Account
Organization
Get Organization Accounts

Get Organization Accounts API

Welcome to the documentation for the Get Organization Accounts API. This API returns all organizations account.

Base URL

{baseURL}/v1/organizations/:organizationId/accounts | GET

Sample Request

curl -X GET {baseURL}/v1/organizations/:organizationId/accounts  \
  -H 'Content-Type: application/json' \

Sample 200 Response

{
  "message": "Organizations retrieved successfully",
  "data": {
    "items": [],
    "meta": {
      "total": 0,
      "page": 1,
      "limit": 5
    }
  },
  "success": true
}