ACH Detokenize
POST https://gateway-api.paycertify.com/api/tokens/ach_detokenize
This endpoint detokenizes a given ACH token. You will need to provide the token you wish to detokenize and as part of the response you’ll get the original number previously stored and it’s expiration month and year.
Parameter | Type | Length | Presence | Description | Example |
---|---|---|---|---|---|
token |
string |
8-1000 | Required | The token to de-tokenize | 57LVNSEW6K1LTUQ2MSP92NCAN7V057A7KST3BM |
Parameter | Type | Length | Description | Example |
---|---|---|---|---|
id |
uuid |
36 | This token’s ID | 41f00869-d7b3-413e-9476-9ef1a8bc2f28 |
merchant_id |
uuid |
36 | The token’s merchant ID | 41f00869-d7b3-413e-9476-9ef1a8bc2f28 |
account_number |
string |
1-17 | The account number | 74022783922013 |
check_number |
string |
1-11 | The check number | 411785 |
routing_number |
string |
1-17 | The routing number | 061103852 |
curl --request POST \
--url https://gateway-api.paycertify.com/api/tokens/ach_detokenize \
--header 'Authorization: Bearer YOUR_API_TOKEN' \
--form 'token=57LVNSEW6K1LTUQ2MSP92NCAN7V057A7KST3BM'
Responds with:
{
"card_token": {
"id": "41f00869-d7b3-413e-9476-9ef1a8bc2f28",
"merchant_id": "41f00869-d7b3-413e-9476-9ef1a8bc2f28",
"account_number": "74022783922013",
"check_number": "411785",
"routing_number": "061103852"
}
}