POST
/
send
/
send_limits
curl --request POST \
  --url https://staging-api.chip-in.asia/api/send/send_limits \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'checksum: <checksum>' \
  --header 'epoch: <epoch>' \
  --data '{
  "amount": 0
}'
{
  "id": 2,
  "currency": "MYR",
  "fee_type": "flat",
  "transaction_type": "in",
  "amount": 200,
  "fee": 0,
  "net_amount": 200,
  "from_settlement": "2023-07-21",
  "status": "pending",
  "approvals_required": 0,
  "approvals_received": 0,
  "created_at": "2023-07-20T10:34:50.503Z",
  "updated_at": "2023-07-20T10:34:50.503Z"
}

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 limit schema

Response

200
application/json

Successful response

This is send limit schema