Transactions
Partners can fetch the history of transactions associated with their API key.
Query results may be truncated. Queries are limited to 100 results. Please see Pagination at the bottom of page.
Fetch Transactions
GET
https://partners.liquid.com/api/v1/partner/{public_api_key}/transactions
Path Parameters
Name | Type | Description |
---|---|---|
public_api_key | string | Public API key of the partner. |
Query Parameters
Name | Type | Description |
---|---|---|
min_ts | number | Unix millisecond timestamp. |
max_ts | number | Unix millisecond timestamp. |
status | string | Transaction status. |
intent_id | string | Search by Intent. |
partner_order_id | string | Searchable 40 character id. |
partner_tag | string | Filter for transactions containing a specified tag. |
Headers
Name | Type | Description |
---|---|---|
X-Quoine-Auth | string | Signed JWT belonging to the Liquid user account associated with the partner. |
Swagger
https://partners.liquid.com/swagger/#/default/get_api_v1_partner__public_api_key__transactions
X-Quoine-Auth
Signed JWT. Please refer to auth token instructions.
Encoded payload must contain:
Example (Javascript)
Pagination
The selection
object returned in the query contains information about:
How many transactions exist for the given partner (
total_*
)How many transactions are responsive to the given query (
range_*
)How many transactions were actually returned in the payload (
payload_*
)
If the payload_count
is less than the range_count
then results are being hidden. A new query should be made again form min_ts={payload_max_ts + 1}
.
Last updated