v1
latestOpenAPI 3.1.0Proprietary2026-07-2464170247.4 KBList Partner Fees
List partner fees for an account.
- On a main account: returns its default fees. Set include_sub_accounts=true to also include fees configured on its sub-accounts.
- On a sub-account: returns that sub-account's fees.
Provide the external_id query parameter to look up a single fee by the external_id used when it was created (other filters are ignored).
Path parameters
Account ID (main or sub-account)
Query parameters
Partner-supplied external_id request value (UUID) used to make a create request idempotent. Validated at the API boundary and stored on the resource as an external identifier.
Look up a single fee by the external_id used when it was created. When set, other filters are ignored and at most one item is returned.
When the path account is a main account, set true to also include fees configured on its sub-accounts. Ignored for sub-account requests.
Partner fee transaction type.
Filter by fee type
Only fees created at or after this time (RFC3339/ISO 8601)
Only fees created at or before this time (RFC3339/ISO 8601)
Sort order by create time (ASC: oldest first, DESC: newest first; default DESC)
{
"page": 1,
"size": 10
}Response
Example response
{
"items": [
{
"fee_id": "e9ece207-8fd6-400e-872b-409701e57b74",
"fee": {
"currency": "USD",
"payment_rail": "US_FEDWIRE",
"rate": "0.001",
"fixed": "0.5"
},
"created_at": "2026-06-11T08:30:00Z",
"modified_at": "2026-06-11T08:30:00Z"
}
],
"total": 42
}