GET
/
provider
/
orders
List lock payment orders
curl --request GET \
  --url https://api.paycrest.io/v1/provider/orders \
  --header 'API-Key: <api-key>'
{
  "status": "success",
  "message": "Operation successful",
  "data": {
    "totalRecords": 123,
    "page": 123,
    "pageSize": 123,
    "orders": [
      {
        "id": "<string>",
        "token": "<string>",
        "gatewayId": "<string>",
        "amount": 123,
        "rate": 123,
        "institution": "<string>",
        "accountIdentifier": "<string>",
        "accountName": "<string>",
        "memo": "<string>",
        "network": "base",
        "status": "<string>",
        "updatedAt": "2023-11-07T05:31:56Z",
        "createdAt": "2023-11-07T05:31:56Z",
        "transactionLogs": [
          {
            "id": "<string>",
            "gateway_id": "<string>",
            "status": "<string>",
            "tx_hash": "<string>",
            "created_at": "2023-11-07T05:31:56Z"
          }
        ],
        "cancellationReasons": [
          "<string>"
        ]
      }
    ]
  }
}
Retrieve a list of lock payment orders for the provider.

Authorizations

API-Key
string
header
required

Query Parameters

currency
string
status
string
ordering
string

Response

200
application/json

List of lock payment orders

The response is of type object.