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

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"

Response

200 - application/json
status
string
Example:

"00"

message
string
Example:

"Successful"

data
object