List gift cards
GET/openapi/2026-07/gift_cards
Retrieves a list of gift cards with various filtering options.
Request
Query Parameters
enable: gift card is active and usabledisable: gift card is disabled and cannot be usedasc: ascending orderdesc: descending order
Cursor for pagination
Number of records per page. The default value is 10
List of gift card IDs to filter by. Example: ?ids=GC1001&ids=GC1002
Filter gift cards created at or after this time (e.g., 2018-11-02T12:30:10Z)
Filter gift cards created at or before this time (e.g., 2018-11-02T12:30:10Z)
Filter gift cards last updated at or after this time (e.g., 2018-11-02T12:30:10Z)
Filter gift cards last updated at or before this time (e.g., 2018-11-02T12:30:10Z)
Filter gift cards with initial value greater than or equal to this amount
Filter gift cards with initial value less than or equal to this amount
Status of the gift card:
Filter by balance status of the gift card
Keyword for searching gift cards (e.g., matches against code or note)
Field to sort the results by (e.g., created_at, updated_at)
Sort direction:
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
enable: gift card is active and usabledisable: gift card is disabled and cannot be used- ]
error code
error message
data object
gift_cards object[]
List of gift cards
Gift card ID
Last four characters of the gift card code
Current balance of the gift card
The initial value of the gift card
Note attached to the gift card
Expiration date of the gift card (e.g., 2018-11-02T12:30:10Z)
Time when the gift card was disabled (e.g., 2018-11-02T12:30:10Z)
Whether the gift card is currently enabled
Time when the gift card was created (e.g., 2018-11-02T12:30:10Z)
Time when the gift card was last updated (e.g., 2018-11-02T12:30:10Z)
Status of the gift card:
Currency in which the gift card is denominated
ID of the line item associated with the gift card
ID of the order associated with the gift card
User ID of the creator or owner of the gift card
Suffix of the template used to render the gift card online
Customer ID associated with the gift card
The gift card code, consisting of alphanumeric characters (minimum: 8 characters, maximum: 20 characters)
The cursor for the next page of results
Whether there are more records
{
"code": "string",
"message": "string",
"data": {
"gift_cards": [
{
"id": "string",
"last_characters": "string",
"balance": "string",
"initial_value": "string",
"note": "string",
"expires_on": "string",
"disabled_at": "string",
"enabled": true,
"created_at": "string",
"updated_at": "string",
"status": "string",
"currency": "string",
"line_item_id": "string",
"order_id": "string",
"user_id": "string",
"template_suffix": "string",
"customer_id": "string",
"code": "string"
}
],
"cursor": "string",
"has_more": true
}
}