POST
/
send
/
bank_accounts
curl --request POST \
  --url https://staging-api.chip-in.asia/api/send/bank_accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'checksum: <checksum>' \
  --header 'epoch: <epoch>' \
  --data '{
  "account_number": "157380111111",
  "bank_code": "MBBEMYKL",
  "name": "Ahmad Pintu"
}'
{
  "id": 84,
  "status": "verified",
  "account_number": "157380111111",
  "bank_code": "MBBEMYKL",
  "group_id": null,
  "name": "Ahmad Pintu",
  "reference": null,
  "created_at": "2023-07-20T08:59:10.766Z",
  "is_debiting_account": false,
  "is_crediting_account": false,
  "updated_at": "2023-07-20T08:59:10.766Z",
  "deleted_at": null,
  "rejection_reason": null
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

epoch
integer
required

Unix epoch timestamp

Example:

1619740800

checksum
string
required

Refer to checksum calculation

Body

application/json

This is bank account schema

Response

200
application/json

Successful response

This is bank account schema