Request
The primary key for each resource.
Body Params application/vnd.api+json
data
object (ProductList)Â
requiredThe primary key for each resource.
Allowed value:ProductList
{
"data": {
"id": "FID001",
"type": "ProductList",
"attributes": {
"name": "string",
"description": "string"
},
"relationships": {}
}
}
Request samples
curl --location --request PATCH 'https://api.synap.ac/v3/product-lists/' \
--header 'Content-Type: application/vnd.api+json' \
--data-raw '{
"data": {
"id": "FID001",
"type": "ProductList",
"attributes": {
"name": "string",
"description": "string"
},
"relationships": {}
}
}'
Responses
data
object (ProductList)Â
optionalThe primary key for each resource.
Allowed value:ProductList
{
"data": {
"id": "FID001",
"type": "ProductList",
"attributes": {
"name": "string",
"description": "string"
},
"relationships": {
"products": {
"data": [
{
"id": "FID001",
"type": "Product"
}
]
}
}
}
}
Modified at 2025-07-08 10:51:21