PUT /self/{shopId}/groups/{groupId}
Body
-
title
string Required Minimum length is
1
. -
description
string | null -
productIds
array[integer(int64)] Required -
priority
integer(int32) Required -
type
integer(int32) Required Values are
0
or1
. -
main
boolean | null
PUT
/self/{shopId}/groups/{groupId}
curl \
-X PUT https://dev.sellpass.io/self/{shopId}/groups/{groupId} \
-H "Authorization: $API_KEY" \
-H "Content-Type: application/json" \
-d '{"title":"string","description":"string","productIds":[42],"priority":42,"type":0,"main":true}'
Request example
{
"title": "string",
"description": "string",
"productIds": [
42
],
"priority": 42,
"type": 0,
"main": true
}
Request examples
{
"title": "string",
"description": "string",
"productIds": [
42
],
"priority": 42,
"type": 0,
"main": true
}