GET
/
v1
/
transactions
/

View all of the transactions that have occurred from your users.

Transactions occur after a user has activated a deal and made a purchase at a retailer. You can use this API to view the status of these transactions.

This API call uses your private API key and is not for client side consumption.

How to use

This API should be called on your server side to populate your application with the latest status of your users transactions. Then, you can display this data to your users in your application.

You can poll this API periodically to get the latest to transactions. Use the updatedAtLessThan and updatedAtGreaterThan query parameters to filter the transactions you want to see.

Authorizations

Authorization
string
headerrequired

Private Sleek API token.

Query Parameters

cursor
string

The ID of the next item that will be fetched. Format: UUID RFC 4122

updatedAtLessThan
string

Filter for transactions that were updated before this date time. Format: ISO 8601

updatedAtGreaterThan
string

Filter for transactions that were updated after this date time. Format: ISO 8601

Response

200 - application/json
data
object[]
required
cursor
string

The ID of the next item in the list. Defined if there are more items to fetch. Pass this as the cursor query parameter to fetch the next page. Format: UUID RFC 4122