Skip to main content
POST
https://waas-staging.embedly.ng
/
simulate-card-transactions
Simulate Debit Card Transaction (staging)
curl --request POST \
  --url https://waas-staging.embedly.ng/simulate-card-transactions \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "AccountNumber": "<string>",
  "amount": "<string>",
  "TransactionType": "<string>"
}
'
{
  "isSuccessful": true,
  "responseCode": "00",
  "responseMessage": "OK"
}
AccountNumber
string
required
The account number. Example: “9710005607”
amount
string
required
The transaction amount. Example: “10000000”
TransactionType
string
required
Transaction types: POS, ATM. Example: “POS”
{
  "isSuccessful": true,
  "responseCode": "00",
  "responseMessage": "OK"
}