get
https://sandbox-api-gtw.softpoint.io/api/locations//ach/tokens/
Retrieves the stored ACH account details associated with a previously created token.
Request Headers
| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer YOUR_ACCESS_TOKEN |
| Content-Type | Yes | application/json |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
location_id | string | Yes | Identifier of the location that owns the token |
token | string | Yes | The ACH token returned from the Tokenize endpoint |
Response Fields
The response body contains a token object with the following fields:
| Field | Type | Description |
|---|---|---|
token.customerBankRoutingNumber | string | ABA routing number |
token.customerBankAccountLastFour | string | Masked account number (last 4 digits visible) |
token.customerBankAccountType | string | Examples: checking, savings |
token.customerBankAccountClassification | string | Examples: personal_account, business |
token.customerFirstName | string | Account holder first name |
token.customerLastName | string | Account holder last name |
token.customerAddress | string | Street address |
token.customerCity | string | City |
token.customerState | string | State (2-letter code) |
token.customerZipCode | string | ZIP code |
token.customerCountry | string | Country |
token.customerPhone | string | Phone number (partially masked) |
token.customerEmail | string | Email address (partially masked) |
Response Examples
200 — Success
{
"token": {
"customerBankRoutingNumber": "091000022",
"customerBankAccountLastFour": "****3632",
"customerBankAccountType": "checking",
"customerBankAccountClassification": "personal_account",
"customerFirstName": "David",
"customerLastName": "NANAS",
"customerAddress": "2711 Park Blvd",
"customerCity": "Seattle",
"customerState": "WA",
"customerZipCode": "98101",
"customerCountry": "USA",
"customerPhone": "***-***-9765",
"customerEmail": "da*****[email protected]"
}
}404 — Token Not Found
Returned when the token does not exist or belongs to a different location.
{
"error": {
"code": 0,
"name": "ach_generic",
"message": "ACH token not found",
"details": []
}
}Notes
- Sensitive fields such as phone number and email address are partially masked in the response.
- Returns
404 Not Foundif the token does not exist or belongs to a different location.

