Retrieve a transfer
GET / v1 / transfers /:id
Retrieves the details of an existing transfer. Supply the unique transfer ID from either a transfer creation request or the transfer list, and Stripe will return the corresponding transfer information.
Parameters
No parameters.
Returns
Returns a transfer object if a valid identifier was provided, and raises an error otherwise.
Response
List all transfers
GET / v1 / transfers
Returns a list of existing transfers sent to connected accounts. The transfers are returned in sorted order, with the most recently created transfers appearing first.
Parameters
- destination string Only return transfers for the destination specified by this account ID.
More parameters
- created object
- ending _ before string
- limit integer
- starting _ after string
- transfer _ group string
Returns
A dictionary with a data property that contains an array of up to limit transfers, starting after transfer starting_after. Each entry in the array is a separate transfer object. If no more transfers are available, the resulting array will be empty.
Response
