List Payment Sources
List payment sources for your Chariot account.
Payment Sources represent segregated addresses for incoming deposits. In practice, this can be separate electronic bank addresses (account + routing numbers) or physical mailing addresses (lockboxes). Payment Sources make it easy to independently manage and consolidate incoming payments and donations from different sources which in turn makes reconciliation of money and data seamless. Every Payment Source belongs to a specific Financial Account and can be thought of as a gateway/door for money to flow into the Financial Account. Payment Sources are not separately ledgered which means you can't get the balance of a Payment Source separately from the Financial Account.
Payment Sources should be setup and managed through the Chariot Dashboard.
Query parameters
Limit the size of the list that is returned. The default (and maximum) is 100 objects.
The cursor to use for pagination. If not set, the first page of results will be returned.
Response
The response for PaymentSources.list
Example response
{
"results": [
{
"id": "payment_source_01j8rs605a4gctmbm58d87mvsj",
"financial_account_id": "fa_01j8rs605a4gctmbm58d87mvsj",
"name": "Main Payment Source",
"source_type": "portal",
"financial_address": {
"ach": {
"account_number": "987654321",
"routing_number": "101050001"
}
},
"lockbox": {
"address": {
"city": "New York",
"country": "US",
"line1": "123 Main St.",
"line2": "Suite 2504",
"postal_code": "12345",
"state": "NY"
}
},
"created_at": "2020-01-31T23:59:59Z",
"updated_at": "2020-01-31T23:59:59Z"
}
]
}