For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Contact usLogin
GuidesAPI ReferenceFDX APIChangelog
GuidesAPI ReferenceFDX APIChangelog
  • Overview
    • Introduction
    • Authentication
  • Accounts
  • Statements
  • Customers
      • GETGet current customer
      • GETList account customers
  • Transactions
LogoLogo
Contact usLogin
CustomersCustomers

Get current customer

GET
/customers/current
GET
/fdx/v6/customers/current
$curl https://api.givechariot.com/fdx/v6/customers/current \
> -H "Authorization: Bearer <token>"
1{
2 "customerId": "string",
3 "name": {
4 "first": "string",
5 "middle": "string",
6 "last": "string",
7 "suffix": "string",
8 "prefix": "string",
9 "company": "string"
10 },
11 "type": "BUSINESS",
12 "taxId": "string",
13 "addresses": [
14 {
15 "line1": "string",
16 "city": "string",
17 "region": "string",
18 "postalCode": "string",
19 "country": "string",
20 "line2": "string",
21 "line3": "string"
22 }
23 ],
24 "businessCustomer": {
25 "name": "string",
26 "registeredId": "string"
27 }
28}

Get the organization-level identity for the current authenticated customer. Returns org-level data (nonprofit name, EIN, address). Individual control-person data is excluded because consent is org-level.

Was this page helpful?
Previous

List account customers

Next
Built with

Authentication

AuthorizationBearer

OAuth 2.0 Bearer token. A client may hold both scopes, but each FDX authorization must contain exactly one — they are mutually exclusive per authorization. An authorization containing both will be rejected. See the Authentication page for token exchange details.

Response

The current authenticated customer
customerIdstring
Unique identifier for the customer
nameobject
A person's name.
typeenum
Type of customer
Allowed values:
taxIdstring

Tax identification number (e.g., EIN)

addresseslist of objects
businessCustomerobject
Business customer information.

Errors

401
Unauthorized Error
403
Forbidden Error
500
Internal Server Error