| Send | Permission | Community scope |
|---|---|---|
Authorization: Bearer <apiKey> | store | Community scope is derived from the key; do not send a community identifier. |
{pathParameter} and use the query parameters documented below.meta.code = PRODUCTS_RETRIEVED{
"meta": {
"status": "success",
"statusCode": 200,
"code": "PRODUCTS_RETRIEVED",
"skip": 0,
"limit": 20,
"total": 1
},
"message": "List products successfully",
"data": [
{
"_id": "prd_agent_01",
"name": "Agent Test Voucher",
"category": {
"_id": "cat_agent_01",
"name": "Agent Test Rewards",
"displayOrder": 10
},
"price": 100,
"stocks": 2
}
]
}meta.code, never message text.| HTTP | Machine code | What the caller should do | Retry? |
|---|---|---|---|
| 400 | VALIDATION_FAILED | Repair the named request field before retrying. | No, fix first |
| 401 | AUTH_API_KEY_REQUIRED | Add the Authorization header. | No, fix first |
| 401 | AUTH_API_KEY_INVALID | Replace or rotate the key. | No, fix first |
| 401 | AUTH_API_KEY_VALIDATION_FAILED | Authentication could not be completed. | Yes, with backoff |
| 403 | AUTH_PERMISSION_REQUIRED | Request the store permission; no resource data is returned. | No, fix first |
| 500 | INTERNAL_ERROR | Retry with exponential backoff and the same request context, then escalate. | Yes, with backoff |
curl --location 'https://api.returning.ai/v1/products?skip=undefined&limit=20&sort=createdAt%3Adesc&fields=name%2Cprice%2Ccategory%2Cstocks&search=keyword%3Apremium&filter=categoryName%3APremium%20Rewards&lang=th&userID=507f1f77bcf86cd799439011' \
--header 'Authorization: Bearer XXXXXX'{
"meta": {
"status": "success",
"statusCode": 200,
"skip": 0,
"limit": 20,
"total": 1
},
"message": "Read products success.",
"data": [
{
"_id": "507f1f77bcf86cd799439031",
"communityID": "6502c9e514a3e564c5c09c0a",
"name": "Premium Voucher",
"description": "<p>Premium access reward.</p>",
"image": "https://example.com/images/premium-voucher.png",
"price": 100,
"category": "Premium Rewards",
"stocks": 2,
"discountPrice": 90,
"isDiscountEnabled": false,
"discountStartDate": null,
"discountEndDate": null,
"userInformation": {
"isEnabled": false,
"shouldCollectName": false,
"shouldCollectPhone": false,
"shouldCollectAddress": false
},
"shouldPrioritiesExpiringVouchers": false,
"shouldDisplayRemainingQuantity": true,
"expiringVoucherHighlight": {
"isEnabled": false,
"duration": 7,
"timeframe": "days"
},
"isArchived": false,
"totalOrders": 0,
"redemptionInstructions": "<p>Show this voucher at checkout.</p>",
"productPermission": [],
"isProductAccessEnabled": false,
"purchaseStatusOverride": {
"isEnabled": false,
"status": null
},
"createdAt": "2026-06-09T00:00:00.000Z",
"updatedAt": "2026-06-09T00:00:00.000Z"
}
]
}