POST
/
api
/
v1
/
accounts
/
validate-inter-account
Validate an inter-bank account.
curl --request POST \
  --url https://demoapi.saasphereltd.com/api/v1/accounts/validate-inter-account \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_no": "1234567890",
  "bank_code": "044"
}
'
{
  "status": "00",
  "message": "Successful",
  "data": {
    "account_name": "John Doe",
    "account_number": "1234567890"
  }
}

Authorizations

Authorization
string
header
required

Paste only the token (no "Bearer " prefix).

Body

application/json
account_no
string
required

The account number to validate.

Example:

"1234567890"

bank_code
string
required

The bank code.

Example:

"044"

Response

200 - application/json
status
string
Example:

"00"

message
string
Example:

"Successful"

data
object