Get payments
Retrieve all payments for the authenticated user's organization.
query Parameters
start_dateStart date for filtering payments (ISO 8601 format)
end_dateEnd date for filtering payments (ISO 8601 format)
pagePage number for pagination (1-based)
limitNumber of items per page (default: 25)
Get payments › Responses
Successfully retrieved team payments
Pagination details
Create payment
Create a payment. Returns the created payment details.
Create payment › Request Body
from_currencySource currency code (e.g., 'USDC'). See GET /currencies for supported values.
to_currencyDestination currency code (e.g., 'USD'). See GET /currencies for supported values.
organization_reference_idOptional external reference ID for the organization.
funding_account_idID of the funding account.
from_account_idID of the source account (e.g., wallet).
from_amountAmount to send in source currency units. Required if to_amount is not provided.
from_networkBlockchain network for source currency (e.g., 'POLYGON'). See GET /networks for supported values.
to_account_idID of the destination account.
to_amountAmount to receive in destination currency units. Required if from_amount is not provided.
to_networkBlockchain network for destination currency (if applicable). See GET /networks for supported values.
Create payment › Responses
Payment created successfully
Update payment
Update a payment with accounts.
path Parameters
paymentIdUnique identifier of the payment to update
Update payment › Request Body
funding_account_idID of the funding account.
from_account_idID of the source account (e.g., wallet).
to_account_idID of the destination account.
organization_reference_idOptional external reference ID to update.
Update payment › Responses
Payment updated successfully
Submit risk review
Manually review and approve or reject a payment requiring risk review.
path Parameters
paymentIdUnique identifier of the payment to review
Submit risk review › Request Body
is_approvedApprove (true) or reject (false) the payment.
Submit risk review › Responses
Payment review completed successfully