curl --request GET \
--url https://staging-api.chip-in.asia/api/send/send_instructions \
--header 'Authorization: Bearer <token>' \
--header 'checksum: <checksum>' \
--header 'epoch: <epoch>'{
"results": [
{
"bank_account_id": 1,
"amount": 12.44,
"email": "[email protected]",
"description": "Example Description",
"reference": "abc",
"id": 1,
"state": "received",
"receipt_url": "https://www.chip-in.asia/receipts/send/95712b0c",
"slug": "95712b0c",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"pagination": {
"current_page": 1,
"prev_page": null,
"next_page": null,
"total_pages": 1,
"total_count": 1
}
}
}Returns a list of previously created send instructions.
Note: This request is cached and will only refresh every hour.
curl --request GET \
--url https://staging-api.chip-in.asia/api/send/send_instructions \
--header 'Authorization: Bearer <token>' \
--header 'checksum: <checksum>' \
--header 'epoch: <epoch>'{
"results": [
{
"bank_account_id": 1,
"amount": 12.44,
"email": "[email protected]",
"description": "Example Description",
"reference": "abc",
"id": 1,
"state": "received",
"receipt_url": "https://www.chip-in.asia/receipts/send/95712b0c",
"slug": "95712b0c",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"pagination": {
"current_page": 1,
"prev_page": null,
"next_page": null,
"total_pages": 1,
"total_count": 1
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unix epoch timestamp Unix timestamp (seconds)
1619740800
Refer to checksum calculation
Successful response
Show child attributes
ID that have been given in Add Bank Account
1
Amount in floating point with maximum of 2 decimal places.
12.44
"Example Description"
Can be any value.
"abc"
This ID must be stored for future reference.
1
received: This indicates that the instruction has been received. But, the processing has not been started.enquiring: This indicates that the instruction is pending verification.executing: This indicates that the instruction is pending execution.reviewing: This indicates that the instruction is requires further attention. Contact account manager for further troubleshooting.accepted: This indicates that the instruction has been accepted by service provider but not yet completed, commonly related to beneficiary bank's system outage during the request. Successful instructions will be set as completed within 24 hours, while unsuccessful instructions will require further checking before being set as rejected.completed: This indicates that the instruction has completed execution and the recipient should have received the payment.rejected: This indicates that the instruction has been rejected.deleted: This indicates that the instruction has been deleted.received, enquiring, executing, reviewing, accepted, completed, rejected, deleted Generated receipt url link
"https://www.chip-in.asia/receipts/send/95712b0c"
Generated receipt url slug
"95712b0c"
Object creation time in UTC
Object updated time
Show child attributes
This is pagination schema
Show child attributes
Current page value
1
Previous page value
null
Next page value
null
Total available pagination
1
Total avaialable records
1