Others
Resolve Account Number
Others
Resolve Account Number
Resolve bank account number
POST
/
resolve-account-number
curl -X POST https://api.swervpay.co/api/v1/resolve-account-number \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json" \
-d '{
"account_number": "user",
"bank_code": "user"
}'
{
"account_name": "<string>",
"account_number": "<string>",
"bank_code": "<string>",
"bank_name": "<string>"
}
curl -X POST https://api.swervpay.co/api/v1/resolve-account-number \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json" \
-d '{
"account_number": "user",
"bank_code": "user"
}'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
OK
The response is of type object
.
Was this page helpful?
curl -X POST https://api.swervpay.co/api/v1/resolve-account-number \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json" \
-d '{
"account_number": "user",
"bank_code": "user"
}'
{
"account_name": "<string>",
"account_number": "<string>",
"bank_code": "<string>",
"bank_name": "<string>"
}