curl --request POST \
--url https://api.example.com/admin/explore-group/styles/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"exploreGroupID": 123,
"shouldShowContentPreview": true,
"styles": [
{
"elementTypeCode": "<string>",
"styleTypeCode": "<string>",
"positionTypeCode": "<string>",
"value": "<string>"
}
]
}
'{
"success": true,
"data": "<unknown>"
}Update the exploregroup style
curl --request POST \
--url https://api.example.com/admin/explore-group/styles/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"exploreGroupID": 123,
"shouldShowContentPreview": true,
"styles": [
{
"elementTypeCode": "<string>",
"styleTypeCode": "<string>",
"positionTypeCode": "<string>",
"value": "<string>"
}
]
}
'{
"success": true,
"data": "<unknown>"
}