Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"type": "CLIENT_PAYMENT",
"process_type": "ORIGINAL",
"total_amount": "50",
"entry_type": "CREDIT",
"account_id": "{{account_id}}",
"data": {
"description": {
"en-US": "Test"
},
"metadata": {
"description": "metadata testing"
}
}
}
Request Code Samples
curl --location --request POST '/core/transactions/v1' \
--header 'Content-type: application/json;' \
--data-raw '{
"type": "CLIENT_PAYMENT",
"process_type": "ORIGINAL",
"total_amount": "50",
"entry_type": "CREDIT",
"account_id": "{{account_id}}",
"data": {
"description": {
"en-US": "Test"
},
"metadata": {
"description": "metadata testing"
}
}
}'
Responses
application/json {
"data": {
"id": "atx-2qQ4giu9rc38wF6XX3NlEKLNvmx",
"result": "APPROVED",
"created_at": "2024-12-19T04:12:57.069628737Z"
}
}
Modified at 2025-03-16 05:50:40