Send Instructions
List all send instructions
API Reference
Accounts
Send Limits
Bank Accounts
Send Instructions
Send Instructions
List all send instructions
Returns a list of previously created send instructions.
Note: This request is cached and will only refresh every hour.
GET
/
send
/
send_instructions
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": [
{
"id": 49,
"bank_account_id": 39,
"amount": "100.00",
"state": "received",
"email": "wan@chip-in.asia",
"description": null,
"reference": null,
"created_at": "2023-03-20T02:04:40.692Z",
"updated_at": "2023-03-20T02:04:40.692Z"
},
{
"id": 48,
"bank_account_id": 39,
"amount": "100.00",
"state": "received",
"email": "wan@chip-in.asia",
"description": "test",
"reference": null,
"created_at": "2023-03-20T02:04:37.218Z",
"updated_at": "2023-03-20T02:04:37.218Z"
},
{
"id": 45,
"bank_account_id": 39,
"amount": "100.00",
"state": "received",
"email": "wan@chip-in.asia",
"description": "test",
"reference": null,
"created_at": "2023-03-17T08:08:09.283Z",
"updated_at": "2023-03-17T08:08:09.283Z"
},
{
"id": 44,
"bank_account_id": 39,
"amount": "100.00",
"state": "received",
"email": "wan@chip-in.asia",
"description": "test",
"reference": null,
"created_at": "2023-03-17T08:07:50.038Z",
"updated_at": "2023-03-17T08:07:50.038Z"
}
],
"meta": {
"pagination": {
"current_page": 1,
"prev_page": null,
"next_page": null,
"total_pages": 1,
"total_count": 2
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
Unix epoch timestamp
Example:
1619740800
Refer to checksum calculation
Response
200
application/json
Successful response
The response is of type object
.
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": [
{
"id": 49,
"bank_account_id": 39,
"amount": "100.00",
"state": "received",
"email": "wan@chip-in.asia",
"description": null,
"reference": null,
"created_at": "2023-03-20T02:04:40.692Z",
"updated_at": "2023-03-20T02:04:40.692Z"
},
{
"id": 48,
"bank_account_id": 39,
"amount": "100.00",
"state": "received",
"email": "wan@chip-in.asia",
"description": "test",
"reference": null,
"created_at": "2023-03-20T02:04:37.218Z",
"updated_at": "2023-03-20T02:04:37.218Z"
},
{
"id": 45,
"bank_account_id": 39,
"amount": "100.00",
"state": "received",
"email": "wan@chip-in.asia",
"description": "test",
"reference": null,
"created_at": "2023-03-17T08:08:09.283Z",
"updated_at": "2023-03-17T08:08:09.283Z"
},
{
"id": 44,
"bank_account_id": 39,
"amount": "100.00",
"state": "received",
"email": "wan@chip-in.asia",
"description": "test",
"reference": null,
"created_at": "2023-03-17T08:07:50.038Z",
"updated_at": "2023-03-17T08:07:50.038Z"
}
],
"meta": {
"pagination": {
"current_page": 1,
"prev_page": null,
"next_page": null,
"total_pages": 1,
"total_count": 2
}
}
}