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

# Get Organization Prefix Mappings

> Retrieves all paginated organization prefix mappings for the specified organization. Supports search by secondary prefix, alias, organization name, or primary prefix code. Admin access required.

<ParamField query="organizationId" type="string" required>
  **Example:** `02600494-1a3c-11f0-a818-6045bd97b81d`
</ParamField>

<ParamField query="page" type="number">
  **Example:** `1`
</ParamField>

<ParamField query="pageSize" type="number">
  **Example:** `10`
</ParamField>

<ParamField query="search" type="string">
  **Example:** `123`
</ParamField>

<ResponseExample>
  ```json 200 Success theme={null}
  {
    "statusCode": 200,
    "message": "success",
    "data": [
      {
        "id": "8b4432bc-f3c7-4055-b5e5-e232707e79af",
        "secondaryPrefix": "56",
        "primaryPrefixId": "2c316406-87ee-494b-a43a-d24629f4eeea",
        "organizationId": "02600494-1a3c-11f0-a818-6045bd97b81d",
        "alias": "Embedly Check Demo",
        "organizationName": "Gentlemens Club",
        "organizationIsActive": "active"
      }
    ],
    "pagination": {
      "currentPage": 1,
      "pageSize": 10,
      "totalCount": 1,
      "totalPages": 1,
      "hasNextPage": false,
      "hasPreviousPage": false
    }
  }
  ```

  ```json 401 Unauthorized theme={null}
  {
    "code": "401",
    "success": false,
    "message": "x-api-key is missing in the header",
    "data": null
  }
  ```

  ```json 403 Forbidden theme={null}
  {
    "statusCode": 403,
    "message": "Access denied. The API key provided is for another organization. You can only access your organization's wallets.",
    "data": null
  }
  ```
</ResponseExample>
