Contact usLogin
GuidesAPI ReferenceChangelog
GuidesAPI ReferenceChangelog
  • Introduction
    • Overview
    • Authentication
    • Errors
    • Software Development Kits
    • Webhooks and Events
    • Sandbox Simulations
  • Core Resources
  • DAFpay
  • Disbursements
LogoLogo
Contact usLogin
DisbursementsInbound Transfers

List Inbound Transfers

GET
/v1/inbound_transfers
GET
/v1/inbound_transfers
1curl https://api.givechariot.com/v1/inbound_transfers \
2 -H "Authorization: Bearer <token>"
Try it
1{
2 "results": [
3 {
4 "id": "inbound_transfer_01j8rs605a4gctmbm58d87mvsj",
5 "amount": 10000,
6 "created_at": "2020-01-31T23:00:00Z",
7 "description": "InboundTransfer from my bank account",
8 "status": "pending",
9 "updated_at": "2020-01-31T23:00:00Z"
10 }
11 ],
12 "nextPageToken": "nextPageToken"
13}
List inbound transfers for your account.
Was this page helpful?
Previous

Create an Inbound transfer

Next
Built with
Create an Inbound transfer
List inbound transfers for your account.

Authentication

AuthorizationBearer
Bearer authentication of the form `Bearer <token>`, where token is your auth token.

Query parameters

limitintegerOptional
Limit the size of the list that is returned. The default (and maximum) is 100 objects.
pageTokenstringOptional
The cursor to use for pagination. If not set, the first page of results will be returned.

Response

The response for InboundTransfers.list
resultslist of objects or null
nextPageTokenstring or null

A cursor token to use to retrieve the next page of results by making another API call to the same endpoint with the same parameters (only changing the pageToken). If specified, then more results exist on the server that were not returned, otherwise no more results exist on the server.

Errors

The cursor to use for pagination. If not set, the first page of results will be returned.

Bearer authentication of the form Bearer <token>, where token is your auth token.

Limit the size of the list that is returned. The default (and maximum) is 100 objects.