Skip to main content
GET
/
send
/
send_instructions
List all 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": [
    {
      "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
    }
  }
}

Authorizations

Authorization
string
header
required

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

Headers

epoch
integer<Unix timestamp (seconds)>
required

Unix epoch timestamp Unix timestamp (seconds)

Example:

1619740800

checksum
string
required

Refer to checksum calculation

Response

Successful response

results
object[]
meta
object