Substy Developers
Billing

List agency payout requests

List payout requests across agency creators using limit and offset. Inspect each creator's result when some platform requests fail.

GET/v1/agencies/{agencyId}/payouts/requests

List payout requests across agency creators using limit and offset. Inspect each creator's result when some platform requests fail.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

agencyId*string
Length1 <= length

Query Parameters

creatorIds?array<>
limit?integer
Range1 <= value <= 100
Default10
offset?integer
Range0 <= value <= 9007199254740991
Default0

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/agencies/string/payouts/requests" \  -H "Authorization: Bearer YOUR_API_KEY"
{  "data": {    "creators": [      {        "creatorId": "string",        "creatorName": "string",        "creatorPlatform": "string",        "history": null,        "error": null      }    ],    "totalRequests": 0,    "successCount": 0,    "errorCount": 0  },  "meta": {    "requestId": "string"  }}