Payments
List stablecoin inbound payments
Returns a list of stablecoin inbound payments for a given Budget.
get/stablecoins/payments
Query parameters
accountIdstring required
The ID of the account to work with.
Example:F50091
budgetIdstring uuid
The ID of the budget to work with.
Example:775596ae-2624-40af-a9dc-9756110a4a03
limitinteger
The maximum number of results to return.
Example:200
offsetinteger
The number of items to skip before returning results.
Example:100
Response
OK
Example response
{
"limit": 200,
"offset": 100,
"count": 67,
"rows": [
{
"id": "e9293471-5eb3-4dbc-916c-dbaf9e2deefd",
"accountId": "F50091",
"budgetId": "775596ae-2624-40af-a9dc-9756110a4a03",
"status": "PENDING",
"remitterId": "a1111111-2222-3333-4444-555555555555",
"amount": 100,
"displayName": "Invoice #12345",
"sourceCurrencyCode": "USDC",
"destinationCurrencyCode": "USD",
"expiresAt": "2025-01-30T08:30:00.000Z",
"createdBy": "John Smith",
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z"
}
]
}