UserCart_POST_SetUserCart
Request
Body Params application/json
{
"offerId": {},
"items": [
{
"product": {
"id": "string",
"variant": {
"id": "string"
}
},
"lineId": {},
"quantity": {},
"notes": {}
}
]
}
Request samples
curl --location --request POST 'https://platform.shopranos.eu/api/cart/user' \
--header 'Content-Type: application/json' \
--data-raw '{
"offerId": {},
"items": [
{
"product": {
"id": "string",
"variant": {
"id": "string"
}
},
"lineId": {},
"quantity": {},
"notes": {}
}
]
}'
Responses
application/json {
"companyId": "string",
"customerId": "string",
"token": "string",
"lastUpdateDate": "2019-08-24T14:15:22Z",
"offerId": "string",
"items": [
{
"lineId": "string",
"product": {
"id": "string",
"variant": {
"id": "string"
}
},
"quantity": 0,
"notes": "string"
}
]
}
Modified at 2025-07-08 13:28:57