Retrieve an InboundTransfer
GET / v1 / treasury / inbound_transfers /:id
Retrieves the details of an existing InboundTransfer.
Parameters
No parameters.
Returns
Returns an InboundTransfer object if a valid identifier was provided. Otherwise, returns an error.
Response
List all InboundTransfers
GET / v1 / treasury / inbound_transfers
Returns a list of InboundTransfers sent from the specified FinancialAccount.
Parameters
- financial _ account string Returns objects associated with this FinancialAccount.
- status enum Only return InboundTransfers that have the given status:
processing,succeeded,failedorcanceled.
More parameters
- ending _ before string
- limit integer
- starting _ after string
Returns
A dictionary with a data property that contains an array of up to limit InboundTransfers, starting after InboundTransfer starting_after. Each entry in the array is a separate InboundTransfer object. If no more InboundTransfers are available, the resulting array is empty.
Response
Cancel an InboundTransfer
POST / v1 / treasury / inbound_transfers /:id / cancel
Cancels an InboundTransfer.
Parameters
No parameters.
Returns
Returns the InboundTransfer object if the cancellation succeeded. Returns an error if the InboundTransfer has already been canceled or cannot be canceled.
Response
