Product
Resource 'Product' operations.
Returns a list of products. The products are returned in descending order by creation date.
Authorizations
x-api-keystringRequired
Value for the x-api-key header parameter.
Query parameters
pageintegerOptionalDefault:
The collection page number
1createdAt[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
scheduledFrom[before]stringOptional
scheduledFrom[strictly_before]stringOptional
scheduledFrom[after]stringOptional
scheduledFrom[strictly_after]stringOptional
scheduledTo[before]stringOptional
scheduledTo[strictly_before]stringOptional
scheduledTo[after]stringOptional
scheduledTo[strictly_after]stringOptional
deletedAt[before]stringOptional
deletedAt[strictly_before]stringOptional
deletedAt[after]stringOptional
deletedAt[strictly_after]stringOptional
Responses
200
Product collection
403
Forbidden
get
/productsGET /products HTTP/1.1
Host: api.glu.io
x-api-key: YOUR_API_KEY
Accept: */*
[
{
"id": 1,
"uuid": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"type": "Voucher",
"createdAt": "2025-11-21T23:21:53.080Z",
"updatedAt": "2025-11-21T23:21:53.080Z",
"description": "",
"status": "Active",
"permalink": "text",
"images": [
null
],
"store": "https://example.com/",
"productTypePhysical": {},
"voucher": {},
"productConfigurableOptions": [
{}
],
"PriceSuffix": "",
"bundle": {},
"scheduledFrom": null,
"scheduledTo": null,
"codes": [
{}
],
"variants": [
{}
],
"deleted": false,
"deletedAt": null,
"location": [
{}
],
"allLocations": true,
"visibility": "Public",
"recurringProduct": {},
"productCategories": [
{}
],
"minimumPricing": [
{}
]
}
]Retrieves a Product resource.
Authorizations
x-api-keystringRequired
Value for the x-api-key header parameter.
Path parameters
idstringRequired
Product identifier
Responses
200
Product resource
403
Forbidden
404
Not found
get
/products/{id}GET /products/{id} HTTP/1.1
Host: api.glu.io
x-api-key: YOUR_API_KEY
Accept: */*
{
"id": 1,
"uuid": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"type": "Voucher",
"createdAt": "2025-11-21T23:21:53.080Z",
"updatedAt": "2025-11-21T23:21:53.080Z",
"description": "",
"status": "Active",
"permalink": "text",
"images": [
null
],
"store": "https://example.com/",
"productTypePhysical": {},
"voucher": {},
"productConfigurableOptions": [
{}
],
"PriceSuffix": "",
"bundle": {},
"scheduledFrom": null,
"scheduledTo": null,
"codes": [
{}
],
"variants": [
{}
],
"deleted": false,
"deletedAt": null,
"location": [
{}
],
"allLocations": true,
"visibility": "Public",
"recurringProduct": {},
"productCategories": [
{}
],
"minimumPricing": [
{}
]
}Last updated