> ## Documentation Index
> Fetch the complete documentation index at: https://notification-docs.platform.ai71services.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Onboard organizations and create respective credentials under a Product

> Create a new organizations under a product and register to get app key the provided details



## OpenAPI

````yaml specs/notification_api_docs.json post /api/v1/onboarding/organizations/{productId}
openapi: 3.0.1
info:
  title: Notifications API
  description: Notification service for sending email, sms and push notifications
  contact: {}
  version: '1.0'
servers:
  - url: https://notification.platform.dev.ai71services.ai/
security: []
paths:
  /api/v1/onboarding/organizations/{productId}:
    post:
      tags:
        - Onboarding API's
      summary: Onboard organizations and create respective credentials under a Product
      description: >-
        Create a new organizations under a product and register to get app key
        the provided details
      requestBody:
        description: Organization details
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/entity.OnboardingOrganizationRequest'
        required: true
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/entity.OnboardingOrganizationResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/entity.ResponseError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/entity.ResponseError'
components:
  schemas:
    entity.OnboardingOrganizationRequest:
      required:
        - organizations
      type: object
      properties:
        organizations:
          type: array
          items:
            $ref: '#/components/schemas/entity.OrganizationRequestObj'
    entity.OnboardingOrganizationResponse:
      required:
        - organizations
      type: object
      properties:
        organizations:
          type: array
          items:
            $ref: '#/components/schemas/entity.OrganizationResponseObj'
    entity.ResponseError:
      type: object
      properties:
        error:
          type: string
    entity.OrganizationRequestObj:
      required:
        - active
        - name
      type: object
      properties:
        active:
          type: boolean
        name:
          type: string
    entity.OrganizationResponseObj:
      required:
        - active
        - apiKey
        - id
        - name
        - product_id
      type: object
      properties:
        active:
          type: boolean
        apiKey:
          type: string
        id:
          type: string
        name:
          type: string
        product_id:
          type: string

````