---
title: "Get a Payment Source"
method: GET
path: "/v1/payment_sources/{id}"
tags: ["paymentSources"]
---

# Get a Payment Source

`GET /v1/payment_sources/{id}`

Get a payment source by its unique identifier.

A Payment Source represents a segregated address 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.

## Path parameters

- `id` string, required

## Response `200`

Successfully retrieved the payment source.

- PaymentSource — A Payment Source represents a segregated address 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.
  - `id` string — The unique identifier for the payment source
  - `financial_account_id` string — The unique identifier for the financial account that the payment source belongs to
  - `name` string — The name of the payment source
  - `source_type` 'manual' | 'portal' | 'lockbox' | 'grantmaker' — The type of the payment source
  - `financial_address` FinancialAddress — A subhash containing information about the electronic bank address payment rail details. This is only available for manual and connected_account payment sources.
    - `ach` AchAddress — A subhash containing information about the electronic bank address payment rail details.
      - `account_number` string, required — The account number of that uniquely identifies the account at the institution
      - `routing_number` string, required — The American Bankers' Association (ABA) Routing Transit Number (RTN) for the destination account.
  - `lockbox` Lockbox — A Lockbox represents a physical mailing address operated by a third-party provider (e.g., Stable, CDS) that receives physical mail and scans checks on Chariot's behalf. Lockboxes are the source of Mail Items, which in turn produce Donations and Deposits. Lockboxes are provisioned and managed by Chariot in partnership with the provider.
    - `id` string, required — The unique identifier for the lockbox.
    - `address` PostalAddress — A postal address is a mailing address where physical mail can be received. Postal addresses can be used to receive paper checks.
      - `city` string, required — City, district, suburb, town, or village.
      - `country` string, required — Two-letter country code (https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
      - `line1` string, required — Address line 1 (e.g. street, PO Box, or company name)
      - `line2` string — Address line 2 (e.g. apartment, suite, unit, or building)
      - `postal_code` string, required — ZIP or postal code
      - `state` string, required — State, county, province, or region
    - `created_at` string, date-time, required — The date and time when the lockbox was created.
    - `updated_at` string, date-time — The date and time when the lockbox was last updated.
  - `created_at` string, date-time — The date and time when the payment source was created
  - `updated_at` string, date-time — The date and time when the payment source was last updated

## Other responses

- `400` — The request is invalid or contains invalid parameters
- `401` — Unauthorized. The request is missing the security (OAuth2 Bearer token) requirements and the server is unable to verify the identify of the caller.
- `403` — Access denied
- `404` — Resource Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.net/chariot-giving/apis/specs.md) · [All operations](https://skmtc.net/chariot-giving/apis/specs/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/chariot-giving/specs/revisions/8446023e02fb/schema)
