> ## 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.

# Get product info with releated organizations by product id

> Get product info with releated organizations by id



## OpenAPI

````yaml specs/notification_api_docs.json get /api/v1/onboarding/product/{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/product/{productId}:
    get:
      tags:
        - Onboarding API's
      summary: Get product info with releated organizations by product id
      description: Get product info with releated organizations by id
      parameters:
        - name: x-api-key
          in: header
          description: API key for authorization
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/entity.GetProductByIdResponse'
        '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.GetProductByIdResponse:
      required:
        - product
      type: object
      properties:
        organizations:
          type: array
          items:
            $ref: '#/components/schemas/entity.OrganizationUpdateResponse'
        product:
          $ref: '#/components/schemas/entity.ProductUpdateResponse'
    entity.ResponseError:
      type: object
      properties:
        error:
          type: string
    entity.OrganizationUpdateResponse:
      required:
        - active
        - id
        - name
        - product_id
      type: object
      properties:
        active:
          type: boolean
        id:
          type: string
        name:
          type: string
        product_id:
          type: string
    entity.ProductUpdateResponse:
      required:
        - active
        - id
        - name
      type: object
      properties:
        active:
          type: boolean
        id:
          type: string
        name:
          type: string

````