Paykeys
Lookup a paykey
Retrieves the details of an existing paykey. Supply the unique paykey id and Straddle will return the corresponding paykey record , including the paykey token value and masked bank account details.
get/v1/paykeys/{id}
Path parameters
idstring uuid required
Headers
Straddle-Account-Idstring uuid
For use by platforms to specify an account id and set scope of a request.
Request-Idstring
Optional client generated identifier to trace and debug a request.
Correlation-Idstring
Optional client generated identifier to trace and debug a series of requests.
Response
OK
Example response
{
"data": {
"institution_name": "Bank of America",
"status_details": {
"message": "Bank account sucesfully validated"
},
"bank_data": {
"routing_number": "021000021",
"account_number": "****1234"
}
}
}