Add Transaction
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"createdBy": 97348810,
"amount": 686.55,
"notes": "sed Duis dolor et cillum",
"type": "CREDIT"
}
Request samples
curl --location --request POST 'https://mock.apidog.com/m1/365924-0-default/customers//account/transactions' \
--header 'Content-Type: application/json' \
--data-raw '{
"createdBy": 97348810,
"amount": 686.55,
"notes": "sed Duis dolor et cillum",
"type": "CREDIT"
}'
Responses
application/json {
"id": 49390410,
"type": "DEBIT",
"amount": 522.95,
"userId": "hagrid",
"version": 0
}
Modified at 2025-05-12 21:15:36