Send Limits
List all send limits
API Reference
Accounts
Send Limits
Bank Accounts
Send Instructions
Send Limits
List all send limits
Returns list of send limits.
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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
Unix epoch timestamp
Refer to checksum calculation
Response
200
application/json
Successful response
1 for RM 1
MYR
: Ringgit Malaysia (RM)
Available options:
MYR
Available options:
flat
, percentage
Available options:
in
, out
1 for RM 1
-1 for -RM 1
Status will be pending until all approver approve the send limit increase request.
Available options:
pending
, approved
, expired
Approval that are required before processing
Approval that have been received
Object creation time in UTC
Object updated time in UTC
This is pagination schema
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
}
}
}