> ## 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 organization info

> Get organization info with product id



## OpenAPI

````yaml specs/notification_api_docs.json get /api/v1/onboarding/product/{product_id}/organization/{organization_id}
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/{product_id}/organization/{organization_id}:
    get:
      tags:
        - Onboarding API's
      summary: Get organization info
      description: Get organization info with product 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.GetOrganizationByIdResponse'
        '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.GetOrganizationByIdResponse:
      required:
        - organization
      type: object
      properties:
        organization:
          $ref: '#/components/schemas/entity.OrganizationUpdateResponse'
    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

````