GET
/
send
/
send_limits
/
{id}
curl --request GET \
  --url https://staging-api.chip-in.asia/api/send/send_limits/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'checksum: <checksum>' \
  --header 'epoch: <epoch>'
{
  "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"
}

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

Path Parameters

id
integer
required

Response

200 - application/json
id
integer
currency
enum<string>
  • MYR: Ringgit Malaysia (RM)
Available options:
MYR
fee_type
enum<string>
Available options:
flat,
percentage
transaction_type
enum<string>
Available options:
in,
out
amount
number
required

1 for RM 1

fee
number

1 for RM 1

net_amount
number

-1 for -RM 1

from_settlement
string
status
enum<string>

Status will be pending until all approver approve the send limit increase request.

Available options:
pending,
approved,
expired
approvals_required
integer

Approval that are required before processing

approvals_received
integer

Approval that have been received

created_at
string

Object creation time in UTC

updated_at
string

Object updated time in UTC