Gift Cards
Commerce7-style gift card records for retail and restaurant credit workflows. The API supports basic search by query string and full record retrieval.
Query Parameters
1 <= value <= 200Header Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Response Body
application/json
curl -X GET "https://example.com/gift-card" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123"{ "giftCards": [ { "id": "string", "title": "string", "type": "Virtual", "status": "Inactive", "giftCardNumber": 1, "code": "string", "initialAmount": 0, "currentBalance": 0, "valueAccountId": "string", "originLocationId": "string", "source": "sale", "recipientName": "string", "recipientPhone": "string", "purchaserEmail": "string", "purchaserPhone": "string", "deliveryStatus": "not_applicable", "deliveryScheduledAt": "2019-08-24T14:15:22Z", "deliveryChannel": "email", "deliveryDestination": "string", "deliveryLastAttemptAt": "2019-08-24T14:15:22Z", "deliveryFailureReason": "string", "deliveryClaimedAt": "2019-08-24T14:15:22Z", "mergedIntoGiftCardId": "string", "expiryDate": "2019-08-24T14:15:22Z", "recipientEmail": "string", "fromName": "string", "giftMessage": "string", "notes": "string", "productId": "string", "purchasedOnOrderId": "string", "purchasedOnOrderNumber": 0, "purchasedOnOrderLineId": "string", "notifyPurchaserWhenOpened": true, "openedAt": "2019-08-24T14:15:22Z", "customerId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "customer": null } ], "total": 0}Header Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/gift-card" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123" \ -H "Content-Type: application/json" \ -d '{ "title": "string", "type": "Virtual", "code": "string", "initialAmount": 0 }'{ "id": "string", "title": "string", "type": "Virtual", "status": "Inactive", "giftCardNumber": 1, "code": "string", "initialAmount": 0, "currentBalance": 0, "valueAccountId": "string", "originLocationId": "string", "source": "sale", "recipientName": "string", "recipientPhone": "string", "purchaserEmail": "string", "purchaserPhone": "string", "deliveryStatus": "not_applicable", "deliveryScheduledAt": "2019-08-24T14:15:22Z", "deliveryChannel": "email", "deliveryDestination": "string", "deliveryLastAttemptAt": "2019-08-24T14:15:22Z", "deliveryFailureReason": "string", "deliveryClaimedAt": "2019-08-24T14:15:22Z", "mergedIntoGiftCardId": "string", "expiryDate": "2019-08-24T14:15:22Z", "recipientEmail": "string", "fromName": "string", "giftMessage": "string", "notes": "string", "productId": "string", "purchasedOnOrderId": "string", "purchasedOnOrderNumber": 0, "purchasedOnOrderLineId": "string", "notifyPurchaserWhenOpened": true, "openedAt": "2019-08-24T14:15:22Z", "customerId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "customer": null}Query Parameters
1 <= lengthHeader Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Response Body
application/json
curl -X GET "https://example.com/gift-card/lookup?code=string" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123"{ "id": "string", "title": "string", "type": "Virtual", "status": "Inactive", "giftCardNumber": 1, "code": "string", "initialAmount": 0, "currentBalance": 0, "valueAccountId": "string", "originLocationId": "string", "source": "sale", "recipientName": "string", "recipientPhone": "string", "purchaserEmail": "string", "purchaserPhone": "string", "deliveryStatus": "not_applicable", "deliveryScheduledAt": "2019-08-24T14:15:22Z", "deliveryChannel": "email", "deliveryDestination": "string", "deliveryLastAttemptAt": "2019-08-24T14:15:22Z", "deliveryFailureReason": "string", "deliveryClaimedAt": "2019-08-24T14:15:22Z", "mergedIntoGiftCardId": "string", "expiryDate": "2019-08-24T14:15:22Z", "recipientEmail": "string", "fromName": "string", "giftMessage": "string", "notes": "string", "productId": "string", "purchasedOnOrderId": "string", "purchasedOnOrderNumber": 0, "purchasedOnOrderLineId": "string", "notifyPurchaserWhenOpened": true, "openedAt": "2019-08-24T14:15:22Z", "customerId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "customer": null}Header Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Response Body
application/json
curl -X GET "https://example.com/gift-card/settings" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123"{ "enabled": true, "tipsEnabled": true, "cashOutEnabled": true, "cashOutThreshold": 0, "cashOutPermission": "manager", "allowDiscounts": true, "allowOnlineRedemption": true, "sharedAcrossLocations": true, "minimumPurchaseAmount": 0, "digitalPurchaseLimit": 0, "physicalPurchaseLimit": 0}Header Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X PUT "https://example.com/gift-card/settings" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123" \ -H "Content-Type: application/json" \ -d '{ "enabled": true, "tipsEnabled": true, "cashOutEnabled": true, "cashOutThreshold": 0, "cashOutPermission": "manager", "allowDiscounts": true, "allowOnlineRedemption": true, "sharedAcrossLocations": true, "minimumPurchaseAmount": 0, "digitalPurchaseLimit": 0, "physicalPurchaseLimit": 0 }'{ "enabled": true, "tipsEnabled": true, "cashOutEnabled": true, "cashOutThreshold": 0, "cashOutPermission": "manager", "allowDiscounts": true, "allowOnlineRedemption": true, "sharedAcrossLocations": true, "minimumPurchaseAmount": 0, "digitalPurchaseLimit": 0, "physicalPurchaseLimit": 0}Query Parameters
10 <= length10 <= lengthHeader Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Response Body
application/json
curl -X GET "https://example.com/gift-card/reports/liability?from=stringstri&to=stringstri" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123"{ "range": { "from": "string", "to": "string", "locationId": "string" }, "startingLiability": 0, "addedValue": 0, "voidedAddedValue": 0, "adjustments": 0, "redemptions": 0, "voidedRedemptions": 0, "cashOuts": 0, "netLiabilityChange": 0, "endingLiability": 0, "cardCounts": { "physical": 0, "digital": 0, "imported": 0, "inactive": 0, "disabled": 0 }}Query Parameters
10 <= length10 <= length1 <= value <= 500Header Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Response Body
application/json
curl -X GET "https://example.com/gift-card/reports/transactions?from=stringstri&to=stringstri" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123"{ "transactions": [ { "id": "string", "giftCardId": "string", "accountId": "string", "cardNumber": "string", "cardLast4": "string", "cardType": "string", "entryType": "string", "amountDelta": 0, "balanceAfter": 0, "orderId": "string", "paymentIntentId": "string", "reason": "string", "originLocationId": "string", "transactionLocationId": "string", "occurredAt": "2019-08-24T14:15:22Z" } ]}Query Parameters
10 <= length10 <= lengthHeader Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Response Body
application/json
curl -X GET "https://example.com/gift-card/reports/liability-pooling?from=stringstri&to=stringstri" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123"{ "settlements": [ { "originLocationId": "string", "redemptionLocationId": "string", "amountOwed": 0, "redemptionCount": 1 } ]}Query Parameters
10 <= length10 <= lengthHeader Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Response Body
application/json
curl -X GET "https://example.com/gift-card/reports/failed-deliveries?from=stringstri&to=stringstri" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123"{ "deliveries": [ { "id": "string", "giftCardId": "string", "channel": "email", "destination": "string", "provider": "string", "failureReason": "string", "attemptedAt": "2019-08-24T14:15:22Z", "cardAmount": 0, "recipientName": "string", "fromName": "string", "originLocationId": "string" } ]}Header Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/gift-card/transfer" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123" \ -H "Content-Type: application/json" \ -d '{ "sourceCode": "string", "targetCode": "string", "mode": "transfer_and_disable", "idempotencyKey": "stringst" }'{ "source": { "id": "string", "title": "string", "type": "Virtual", "status": "Inactive", "giftCardNumber": 1, "code": "string", "initialAmount": 0, "currentBalance": 0, "valueAccountId": "string", "originLocationId": "string", "source": "sale", "recipientName": "string", "recipientPhone": "string", "purchaserEmail": "string", "purchaserPhone": "string", "deliveryStatus": "not_applicable", "deliveryScheduledAt": "2019-08-24T14:15:22Z", "deliveryChannel": "email", "deliveryDestination": "string", "deliveryLastAttemptAt": "2019-08-24T14:15:22Z", "deliveryFailureReason": "string", "deliveryClaimedAt": "2019-08-24T14:15:22Z", "mergedIntoGiftCardId": "string", "expiryDate": "2019-08-24T14:15:22Z", "recipientEmail": "string", "fromName": "string", "giftMessage": "string", "notes": "string", "productId": "string", "purchasedOnOrderId": "string", "purchasedOnOrderNumber": 0, "purchasedOnOrderLineId": "string", "notifyPurchaserWhenOpened": true, "openedAt": "2019-08-24T14:15:22Z", "customerId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "customer": null }, "target": { "id": "string", "title": "string", "type": "Virtual", "status": "Inactive", "giftCardNumber": 1, "code": "string", "initialAmount": 0, "currentBalance": 0, "valueAccountId": "string", "originLocationId": "string", "source": "sale", "recipientName": "string", "recipientPhone": "string", "purchaserEmail": "string", "purchaserPhone": "string", "deliveryStatus": "not_applicable", "deliveryScheduledAt": "2019-08-24T14:15:22Z", "deliveryChannel": "email", "deliveryDestination": "string", "deliveryLastAttemptAt": "2019-08-24T14:15:22Z", "deliveryFailureReason": "string", "deliveryClaimedAt": "2019-08-24T14:15:22Z", "mergedIntoGiftCardId": "string", "expiryDate": "2019-08-24T14:15:22Z", "recipientEmail": "string", "fromName": "string", "giftMessage": "string", "notes": "string", "productId": "string", "purchasedOnOrderId": "string", "purchasedOnOrderNumber": 0, "purchasedOnOrderLineId": "string", "notifyPurchaserWhenOpened": true, "openedAt": "2019-08-24T14:15:22Z", "customerId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "customer": null }}Header Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/gift-card/import" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123" \ -H "Content-Type: application/json" \ -d '{ "records": [ { "code": "string", "balance": 0 } ] }'{ "imported": 1, "giftCards": [ { "id": "string", "title": "string", "type": "Virtual", "status": "Inactive", "giftCardNumber": 1, "code": "string", "initialAmount": 0, "currentBalance": 0, "valueAccountId": "string", "originLocationId": "string", "source": "sale", "recipientName": "string", "recipientPhone": "string", "purchaserEmail": "string", "purchaserPhone": "string", "deliveryStatus": "not_applicable", "deliveryScheduledAt": "2019-08-24T14:15:22Z", "deliveryChannel": "email", "deliveryDestination": "string", "deliveryLastAttemptAt": "2019-08-24T14:15:22Z", "deliveryFailureReason": "string", "deliveryClaimedAt": "2019-08-24T14:15:22Z", "mergedIntoGiftCardId": "string", "expiryDate": "2019-08-24T14:15:22Z", "recipientEmail": "string", "fromName": "string", "giftMessage": "string", "notes": "string", "productId": "string", "purchasedOnOrderId": "string", "purchasedOnOrderNumber": 0, "purchasedOnOrderLineId": "string", "notifyPurchaserWhenOpened": true, "openedAt": "2019-08-24T14:15:22Z", "customerId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "customer": null } ]}Path Parameters
1 <= lengthHeader Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Response Body
application/json
curl -X GET "https://example.com/gift-card/string/transactions" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123"{ "transactions": [ { "id": "string", "entryType": "issue", "amountDelta": 0, "orderId": "string", "paymentIntentId": "string", "sourceEntryId": "string", "reason": "string", "occurredAt": "2019-08-24T14:15:22Z", "createdAt": "2019-08-24T14:15:22Z" } ]}Path Parameters
1 <= lengthHeader Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/gift-card/string/transactions" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123" \ -H "Content-Type: application/json" \ -d '{ "entryType": "load", "amountDelta": 0, "idempotencyKey": "stringst" }'{ "giftCard": { "id": "string", "title": "string", "type": "Virtual", "status": "Inactive", "giftCardNumber": 1, "code": "string", "initialAmount": 0, "currentBalance": 0, "valueAccountId": "string", "originLocationId": "string", "source": "sale", "recipientName": "string", "recipientPhone": "string", "purchaserEmail": "string", "purchaserPhone": "string", "deliveryStatus": "not_applicable", "deliveryScheduledAt": "2019-08-24T14:15:22Z", "deliveryChannel": "email", "deliveryDestination": "string", "deliveryLastAttemptAt": "2019-08-24T14:15:22Z", "deliveryFailureReason": "string", "deliveryClaimedAt": "2019-08-24T14:15:22Z", "mergedIntoGiftCardId": "string", "expiryDate": "2019-08-24T14:15:22Z", "recipientEmail": "string", "fromName": "string", "giftMessage": "string", "notes": "string", "productId": "string", "purchasedOnOrderId": "string", "purchasedOnOrderNumber": 0, "purchasedOnOrderLineId": "string", "notifyPurchaserWhenOpened": true, "openedAt": "2019-08-24T14:15:22Z", "customerId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "customer": null }, "transactionId": "string", "replayed": true}Path Parameters
1 <= lengthHeader Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Response Body
application/json
curl -X GET "https://example.com/gift-card/string" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123"{ "id": "string", "title": "string", "type": "Virtual", "status": "Inactive", "giftCardNumber": 1, "code": "string", "initialAmount": 0, "currentBalance": 0, "valueAccountId": "string", "originLocationId": "string", "source": "sale", "recipientName": "string", "recipientPhone": "string", "purchaserEmail": "string", "purchaserPhone": "string", "deliveryStatus": "not_applicable", "deliveryScheduledAt": "2019-08-24T14:15:22Z", "deliveryChannel": "email", "deliveryDestination": "string", "deliveryLastAttemptAt": "2019-08-24T14:15:22Z", "deliveryFailureReason": "string", "deliveryClaimedAt": "2019-08-24T14:15:22Z", "mergedIntoGiftCardId": "string", "expiryDate": "2019-08-24T14:15:22Z", "recipientEmail": "string", "fromName": "string", "giftMessage": "string", "notes": "string", "productId": "string", "purchasedOnOrderId": "string", "purchasedOnOrderNumber": 0, "purchasedOnOrderLineId": "string", "notifyPurchaserWhenOpened": true, "openedAt": "2019-08-24T14:15:22Z", "customerId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "customer": null}Path Parameters
1 <= lengthHeader Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Response Body
curl -X DELETE "https://example.com/gift-card/string" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123"Path Parameters
1 <= lengthHeader Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X PUT "https://example.com/gift-card/string" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123" \ -H "Content-Type: application/json" \ -d '{}'{ "id": "string", "title": "string", "type": "Virtual", "status": "Inactive", "giftCardNumber": 1, "code": "string", "initialAmount": 0, "currentBalance": 0, "valueAccountId": "string", "originLocationId": "string", "source": "sale", "recipientName": "string", "recipientPhone": "string", "purchaserEmail": "string", "purchaserPhone": "string", "deliveryStatus": "not_applicable", "deliveryScheduledAt": "2019-08-24T14:15:22Z", "deliveryChannel": "email", "deliveryDestination": "string", "deliveryLastAttemptAt": "2019-08-24T14:15:22Z", "deliveryFailureReason": "string", "deliveryClaimedAt": "2019-08-24T14:15:22Z", "mergedIntoGiftCardId": "string", "expiryDate": "2019-08-24T14:15:22Z", "recipientEmail": "string", "fromName": "string", "giftMessage": "string", "notes": "string", "productId": "string", "purchasedOnOrderId": "string", "purchasedOnOrderNumber": 0, "purchasedOnOrderLineId": "string", "notifyPurchaserWhenOpened": true, "openedAt": "2019-08-24T14:15:22Z", "customerId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "customer": null}Path Parameters
1 <= lengthHeader Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/gift-card/string/deliver" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123" \ -H "Content-Type: application/json" \ -d '{}'{ "giftCard": { "id": "string", "title": "string", "type": "Virtual", "status": "Inactive", "giftCardNumber": 1, "code": "string", "initialAmount": 0, "currentBalance": 0, "valueAccountId": "string", "originLocationId": "string", "source": "sale", "recipientName": "string", "recipientPhone": "string", "purchaserEmail": "string", "purchaserPhone": "string", "deliveryStatus": "not_applicable", "deliveryScheduledAt": "2019-08-24T14:15:22Z", "deliveryChannel": "email", "deliveryDestination": "string", "deliveryLastAttemptAt": "2019-08-24T14:15:22Z", "deliveryFailureReason": "string", "deliveryClaimedAt": "2019-08-24T14:15:22Z", "mergedIntoGiftCardId": "string", "expiryDate": "2019-08-24T14:15:22Z", "recipientEmail": "string", "fromName": "string", "giftMessage": "string", "notes": "string", "productId": "string", "purchasedOnOrderId": "string", "purchasedOnOrderNumber": 0, "purchasedOnOrderLineId": "string", "notifyPurchaserWhenOpened": true, "openedAt": "2019-08-24T14:15:22Z", "customerId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "customer": null }, "delivery": { "channel": "email", "destination": "string", "provider": "string", "providerMessageId": "string", "status": "sent", "failureReason": "string" }}Path Parameters
1 <= lengthHeader Parameters
Selects the tenant by id. When both tenant headers are omitted, the server falls back to the configured default tenant slug.
Selects the tenant by slug. Use this when you know the tenant slug instead of the tenant id.
Adds a location scope to the request for location-aware reads, writes, and audit entries.
Test-only Hexclave provider identifier used with x-auth-user-id when trusted identity headers are explicitly enabled. Production clients must use a Hexclave bearer token.
Value in
- "hexclave"
Temporary auth subject used to resolve the acting staff user through the staff auth identity mapping.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/gift-card/string/cash-out" \ -H "x-tenant-id: tenant-local" \ -H "x-tenant-slug: trellis-local" \ -H "x-location-id: loc-tasting-room" \ -H "x-auth-provider: hexclave" \ -H "x-auth-user-id: user_abc123" \ -H "Content-Type: application/json" \ -d '{ "drawerId": "string", "locationId": "string", "idempotencyKey": "stringst" }'{ "giftCard": { "id": "string", "title": "string", "type": "Virtual", "status": "Inactive", "giftCardNumber": 1, "code": "string", "initialAmount": 0, "currentBalance": 0, "valueAccountId": "string", "originLocationId": "string", "source": "sale", "recipientName": "string", "recipientPhone": "string", "purchaserEmail": "string", "purchaserPhone": "string", "deliveryStatus": "not_applicable", "deliveryScheduledAt": "2019-08-24T14:15:22Z", "deliveryChannel": "email", "deliveryDestination": "string", "deliveryLastAttemptAt": "2019-08-24T14:15:22Z", "deliveryFailureReason": "string", "deliveryClaimedAt": "2019-08-24T14:15:22Z", "mergedIntoGiftCardId": "string", "expiryDate": "2019-08-24T14:15:22Z", "recipientEmail": "string", "fromName": "string", "giftMessage": "string", "notes": "string", "productId": "string", "purchasedOnOrderId": "string", "purchasedOnOrderNumber": 0, "purchasedOnOrderLineId": "string", "notifyPurchaserWhenOpened": true, "openedAt": "2019-08-24T14:15:22Z", "customerId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "customer": null }, "amount": 1, "cashDrawerEntryId": "string"}