POST
/
send
/
send_instructions
curl --request POST \
  --url https://staging-api.chip-in.asia/api/send/send_instructions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'checksum: <checksum>' \
  --header 'epoch: <epoch>' \
  --data '{
  "bank_account_id": 1,
  "amount": "100",
  "description": "test",
  "email": "email@gmail.com",
  "reference": "f"
}'
{
  "id": 50,
  "bank_account_id": 1,
  "amount": "100.00",
  "state": "completed",
  "email": "email@gmail.com",
  "description": "test",
  "reference": "f",
  "created_at": "2023-07-20T10:41:25.190Z",
  "updated_at": "2023-07-20T10:41:25.302Z"
}

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 send instructions schema

Response

200
application/json

Successful response

This is send instructions schema