Create bank account
Developing
Create a new bank account
Request
Add the parameter Authorization
to Headers Example:Authorization: ********************
or
Body Params application/jsonRequired
{
"bankId": 16,
"name": "lee Dee",
"accountNo": "1234567822",
"accountVisibility": 1,
"currentBalance": "16000.00"
}
Request Code Samples
curl --location --request POST 'https://mock.apidog.com/m1/1052146-0-default/banks' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"bankId": 16,
"name": "lee Dee",
"accountNo": "1234567822",
"accountVisibility": 1,
"currentBalance": "16000.00"
}'
Responses
application/json
Bank account created successfully
{
"message": "Operation completed successfully"
}
Modified at 2025-12-02 02:19:23