GET
/
send
/
bank_accounts
curl --request GET \
  --url https://staging-api.chip-in.asia/api/send/bank_accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'checksum: <checksum>' \
  --header 'epoch: <epoch>'
{
  "results": [
    {
      "id": 3,
      "status": "rejected",
      "account_number": "157380111111",
      "bank_code": "MBBEMYKL",
      "group_id": null,
      "name": "AHMAD PINTU",
      "reference": null,
      "created_at": "2023-07-20T08:59:10.766Z",
      "is_debiting_account": false,
      "is_crediting_account": false,
      "updated_at": "2023-07-20T08:59:10.766Z",
      "deleted_at": null,
      "rejection_reason": "Non-Actice Status"
    },
    {
      "id": 2,
      "status": "verified",
      "account_number": "162263238637",
      "bank_code": "CIBBMYKL",
      "group_id": null,
      "name": "HELMI",
      "reference": null,
      "created_at": "2023-07-20T08:54:53.427Z",
      "is_debiting_account": false,
      "is_crediting_account": false,
      "updated_at": "2023-07-20T08:54:53.427Z",
      "deleted_at": null,
      "rejection_reason": null
    },
    {
      "id": 1,
      "status": "pending",
      "account_number": "12224",
      "bank_code": "CIBBMYKL",
      "group_id": null,
      "name": "wan",
      "reference": null,
      "created_at": "2022-12-29T07:44:23.821Z",
      "is_debiting_account": false,
      "is_crediting_account": false,
      "updated_at": "2022-12-29T07:44:23.821Z",
      "deleted_at": null,
      "rejection_reason": null
    }
  ],
  "meta": {
    "pagination": {
      "current_page": 1,
      "prev_page": null,
      "next_page": null,
      "total_pages": 1,
      "total_count": 3
    }
  }
}

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

Query Parameters

page
integer

This to navigate index

limit
integer
default: 25

Limit records per page. Default 25

status
enum<string>

This to filter based on status

Available options:
pending,
verified,
rejected
reference
string

This to filter based on reference

Response

200 - application/json
results
object[]
meta
object