POST
/
api
/
v1
/
accounts
/
account-enquiry
Get account enquiry with transaction history.
curl --request POST \
  --url https://demoapi.saasphereltd.com/api/v1/accounts/account-enquiry \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_no": "1234567890",
  "start_date": "<any>",
  "end_date": "<any>"
}
'
{
  "status": "00",
  "message": "Successful",
  "data": {
    "details": {},
    "transactions": []
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
account_no
string
required

The account number to enquire about.

Example:

"1234567890"

start_date
any
end_date
any

Response

200 - application/json
status
string
Example:

"00"

message
string
Example:

"Successful"

data
object