Substy Developers
Billing

List agency payout transactions

List creator payout transactions using the supported limit and marker pagination.

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

List creator payout transactions using the supported limit and marker pagination.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

agencyId*string
Length1 <= length

Query Parameters

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

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/transactions" \  -H "Authorization: Bearer YOUR_API_KEY"
{  "data": {    "creators": [      {        "creatorId": "string",        "creatorName": "string",        "creatorPlatform": "string",        "transactions": null,        "error": null      }    ],    "totalTransactions": 0,    "aggregatedTransactions": [      {        "amount": 0,        "vatAmount": 0,        "taxAmount": 0,        "mediaTaxAmount": 0,        "net": 0,        "fee": 0,        "createdAt": "string",        "currency": "string",        "description": "string",        "descriptionDetails": {          "type": "string",          "params": {            "property1": null,            "property2": null          }        },        "status": "string",        "payoutPendingDays": null,        "user": null,        "id": "string",        "creatorName": "string",        "creatorId": "string"      }    ],    "successCount": 0,    "errorCount": 0,    "hasMore": true,    "nextMarker": null  },  "meta": {    "requestId": "string"  }}