The Products Catalog View for Customers vs Managers
product
object. This document explains these differences and shows examples of how the responses differ.Access
/products
and /product
, the headers of the request determine who is making the request and what type of response they will receive:Authorization
and Access-Token
(previously X-Manager-Token
) headers, and the Role
header should be set to Manager
.Role
header should be set to Customer
.GET /products HTTP/1.1
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9
X-Manager-Token: 123abc456def
Role: Manager
GET /products HTTP/1.1
Role: Customer
Response Structure
Manager
name
field and the value
field in the attributes
array are objects containing "ar" (Arabic) and "en" (English) strings. This gives the Manager the ability to see product names and attributes in both languages.{
"name": {
"ar": "الاسم",
"en": "name"
},
"attributes": [
{
"value": {
"ar": "القيمة",
"en": "value"
}
}
],
"created_at": "2023-05-01T12:34:56Z",
"updated_at": "2023-05-02T12:34:56Z"
}
created_at
and updated_at
fields, providing timestamps for when the product was created and last updated.Customer
name
field and the value
field in the attributes
array are simple strings, and there are no created_at
or updated_at
fields. This presents a simpler view of the product data.{
"name": "name",
"attributes": [
{
"value": "value"
}
]
}
Modified at 2024-10-27 13:54:15