GET
/
send
/
send_limits
curl --request GET \
  --url https://staging-api.chip-in.asia/api/send/send_limits \
  --header 'Authorization: Bearer <token>' \
  --header 'checksum: <checksum>' \
  --header 'epoch: <epoch>'
{
  "results": [
    {
      "id": 1,
      "currency": "MYR",
      "fee_type": "flat",
      "transaction_type": "out",
      "amount": 0,
      "fee": 1,
      "net_amount": -1,
      "from_settlement": "2023-07-21",
      "status": "success",
      "approvals_required": 0,
      "approvals_received": 0,
      "created_at": "2023-07-20T09:00:16.982Z",
      "updated_at": "2023-07-20T09:00:16.982Z"
    }
  ],
  "meta": {
    "pagination": {
      "current_page": 1,
      "prev_page": null,
      "next_page": null,
      "total_pages": 1,
      "total_count": 1
    }
  }
}

Authorizations

Authorization
string
headerrequired

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

Headers

epoch
integer
required

Unix epoch timestamp

checksum
string
required

Refer to checksum calculation

Response

200 - application/json
results
object[]
meta
object