Tracking a Sell Transaction

After you create a sell gift card transaction, you can check its progress using the history endpoint:GET /giftcard-trade/sell/history?page=1

This endpoint returns a paginated list of your most recent trades and their current statuses.

🧾 Query Parameters

ParameterTypeRequiredDescription
uniqueIdentifierStringNoFilter history by a unique identifier you provided during the trade creation.
referenceOrIDStringNoUse this if you want to fetch a single transaction by its reference ID.
pageNumberNoFor paginated results (default = 1).
perPageNumberNoNumber of transactions per page (default = 10).

🎁 Understanding Transaction Status

Each transaction passes through specific stages. Here’s what each status means:

StatusWhat It Means
PENDINGYour transaction is being processed and will be completed soon. Some gift cards take longer due to verification or manual review. Please be patient while it’s being handled.
REJECTEDThe transaction was not successful. Rejection reason and proof are always included in the feedback. See List Of Reasons Why a Gift Card Transaction Can Be Rejected.
COMPLETEDThe transaction has been processed successfully, and the payment has been credited to your account.

πŸ”” Pro Tip

It’s best to automate status updates in your app using webhooks.
That way, your system stays updated in real time when a trade’s status changes.

Learn how to set up webhooks here: Setting Up Webhooks β†’