Deposits

List Bank account Deposits

GET https://satangcorp.com/api/bank-account-deposits/

This endpoint allows you to get list deposit with bank account

Query Parameters

Name
Type
Description

limit

number

limit

offset

number

offset

Headers

Name
Type
Description

Signature

string

This field require encrypted API key and API secret

Authentication

string

This field require API key

{
  "count": 10,
  "items": [
    {
      "id": 12345,
      "user_id": 999,
      "currency": "thb",
      "amount": "100.00",
      "fee": 0,
      "status": "success",
      "created_by": "",
      "created_by_ip": "",
      "created_at": "2020-03-04T15:41:11.653003Z",
      "updated_at": "2019-08-02T14:38:48.22269Z",
      "src_account_id": 0,
      "dst_account_id": 0,
      "verification_image_url": "",
      "transfer_at": "2019-08-02T14:38:48.22269Z",
      "reject_reasons": null
      "user": {...},
      "src_bank_account": {
        ...
        "bank": "qrcode",
        "name": "นาย ทดสอบ สตางค์",
        ...
      },
      "dst_bank_account": {...},
      "identity_verification_document": {...},
    },
    ...
  ],
   
}

Last updated

Was this helpful?