Getting a list of organizations

The method allows you to get a list of organizations

Getting a list of organizations

post
Header parameters
x-api-public-keystringOptional

Public API-key

x-api-signaturestringOptional

Signing the request body with a private API-key

Content-typestringOptional

Request content type

Example: application/json
Body

Request body of the list of organizations

userIdstringOptional

User ID

Example: 6fb8b0d7-c40e-4692-ad85-b5f2208c2f78
limitintegerOptional

Number of elements per page

offsetintegerOptional

Number of items to skip

Responses
200Success
application/json
post
POST /partner/api/get-user-organizations HTTP/1.1
Host: app.apollopayment.io
Content-Type: application/json
Accept: */*
Content-Length: 70

{
  "userId": "6fb8b0d7-c40e-4692-ad85-b5f2208c2f78",
  "limit": 1,
  "offset": 1
}
200Success
{
  "success": true,
  "response": [
    {
      "id": "2497027d-1f9c-46e1-92cf-76f7b046305e",
      "name": "custom name",
      "createdAt": "2025-06-09T13:18:29.358Z"
    }
  ]
}

Last updated