curl --request POST \
--url https://api.example.com/admin/ism-list/style/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ismListID": 1234,
"shouldShowIsmPreview": null,
"styleCodeEntries": [
{
"elementTypeCode": "<string>",
"styleTypeCode": "<string>",
"positionTypeCode": "<string>",
"value": "<string>"
}
]
}
'{
"success": true,
"data": "<unknown>"
}Update Ism List Style by Id
curl --request POST \
--url https://api.example.com/admin/ism-list/style/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ismListID": 1234,
"shouldShowIsmPreview": null,
"styleCodeEntries": [
{
"elementTypeCode": "<string>",
"styleTypeCode": "<string>",
"positionTypeCode": "<string>",
"value": "<string>"
}
]
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.