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

# Get organization members

> Retrieve members of a specific organization by organization ID. The endpoint checks if the organization belongs to the store by using the `x-store-id` header for authentication. It fetches members' details including seat status, assigned emails, and creation dates.

- **Parameters:**
  - `id` (string, path, required): The ID of the organization.

- **Responses:**
  - `200`: Returns member details including subscription details.
  - `401`: Unauthorized if `x-store-id` is not provided.
  - `404`: Organization not found.



## OpenAPI

````yaml /api-reference/blink-api.json get /organizations/{id}/members
openapi: 3.0.0
info:
  title: Blink API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security:
  - storeIdHeader: []
tags:
  - name: Invoices
    description: Unified merchant of record invoices for products and subscriptions.
  - name: Geo Pricing
    description: Resolve Purchasing Power Parity (PPP) localized pricing.
paths:
  /organizations/{id}/members:
    get:
      tags:
        - Organizations
      summary: Get organization members
      description: >-
        Retrieve members of a specific organization by organization ID. The
        endpoint checks if the organization belongs to the store by using the
        `x-store-id` header for authentication. It fetches members' details
        including seat status, assigned emails, and creation dates.


        - **Parameters:**
          - `id` (string, path, required): The ID of the organization.

        - **Responses:**
          - `200`: Returns member details including subscription details.
          - `401`: Unauthorized if `x-store-id` is not provided.
          - `404`: Organization not found.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: ID of the organization
      responses:
        '200':
          description: Organization members retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationMembersResponse'
        '401':
          description: Unauthorized - Store ID header missing.
        '404':
          description: Organization not found.
      security:
        - storeIdHeader: []
components:
  schemas:
    OrganizationMembersResponse:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              subscription_id:
                type: string
              seat_status:
                type: string
              assigned_email:
                type: string
              created_at:
                type: string
                format: date-time
              customer_members:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    email:
                      type: string
                    created_at:
                      type: string
                      format: date-time
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````