Store
Returns a list of stores. The stores are returned in descending order by creation date.
Authorizations
Query parameters
pageintegerOptionalDefault:
The collection page number
1
createdAt[before]stringOptional
createdAt[strictly_before]stringOptional
createdAt[after]stringOptional
createdAt[strictly_after]stringOptional
updatedAt[before]stringOptional
updatedAt[strictly_before]stringOptional
updatedAt[after]stringOptional
updatedAt[strictly_after]stringOptional
validFromFixedDate[before]stringOptional
validFromFixedDate[strictly_before]stringOptional
validFromFixedDate[after]stringOptional
validFromFixedDate[strictly_after]stringOptional
validityFixedDate[before]stringOptional
validityFixedDate[strictly_before]stringOptional
validityFixedDate[after]stringOptional
validityFixedDate[strictly_after]stringOptional
Responses
200
Store collection
403
Forbidden
get
GET /stores HTTP/1.1
Host: api.glu.io
x-api-key: YOUR_API_KEY
Accept: */*
[
{
"id": 1,
"organisation": "https://example.com/",
"name": "text",
"status": "Draft",
"createdAt": "2025-08-20T06:00:04.443Z",
"updatedAt": "2025-08-20T06:00:04.443Z",
"domain": "text",
"aliasDomain": {
"id": 1,
"domain": "text"
},
"logo": null,
"currencyCode": "text",
"defaultVoucherTerms": "",
"codePattern": "XXXXXXXXX",
"codePrependOrder": true,
"paymentGateway": {},
"hasValidFrom": false,
"validFromPeriod": "Days",
"validFromLength": null,
"validFromFixedDate": null,
"validityPeriod": "Years",
"validityLength": 1,
"validityFixedDate": null,
"termsUrl": "",
"privacyUrl": "",
"contactUrl": "",
"locations": [
{}
],
"mainWebsiteUrl": "",
"businessDescription": "",
"type": "Gift Card",
"googleAnalytics": {},
"redirectOnSingleProduct": true,
"qrCodeMode": "Code",
"notifyEmailAddresses": [
"text"
],
"processingFee": 0,
"processingFeeLabel": "",
"processingFeeEnabled": false,
"defaultVoucherRedeemInstructions": "",
"timezone": "Europe/London",
"language": "en",
"giftCardsExpire": true,
"locale": "en_GB"
}
]
Retrieves a Store resource.
Authorizations
Path parameters
idstringRequired
Store identifier
Responses
200
Store resource
403
Forbidden
404
Not found
get
GET /stores/{id} HTTP/1.1
Host: api.glu.io
x-api-key: YOUR_API_KEY
Accept: */*
{
"id": 1,
"organisation": "https://example.com/",
"name": "text",
"status": "Draft",
"createdAt": "2025-08-20T06:00:04.443Z",
"updatedAt": "2025-08-20T06:00:04.443Z",
"domain": "text",
"aliasDomain": {
"id": 1,
"domain": "text"
},
"logo": null,
"currencyCode": "text",
"defaultVoucherTerms": "",
"codePattern": "XXXXXXXXX",
"codePrependOrder": true,
"paymentGateway": {},
"hasValidFrom": false,
"validFromPeriod": "Days",
"validFromLength": null,
"validFromFixedDate": null,
"validityPeriod": "Years",
"validityLength": 1,
"validityFixedDate": null,
"termsUrl": "",
"privacyUrl": "",
"contactUrl": "",
"locations": [
{}
],
"mainWebsiteUrl": "",
"businessDescription": "",
"type": "Gift Card",
"googleAnalytics": {},
"redirectOnSingleProduct": true,
"qrCodeMode": "Code",
"notifyEmailAddresses": [
"text"
],
"processingFee": 0,
"processingFeeLabel": "",
"processingFeeEnabled": false,
"defaultVoucherRedeemInstructions": "",
"timezone": "Europe/London",
"language": "en",
"giftCardsExpire": true,
"locale": "en_GB"
}