curl --request POST \
--url https://api.example.com/ism/styles/save \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ismConcatID": 123,
"styleCodeEntries": [
{
"elementTypeCode": "<string>",
"styleTypeCode": "<string>",
"positionTypeCode": "<string>",
"value": "<string>"
}
]
}
'{
"success": true,
"data": "<unknown>"
}Saves multiple, and overwrites a any and all style entries for a specific ism within a specific concat.
curl --request POST \
--url https://api.example.com/ism/styles/save \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ismConcatID": 123,
"styleCodeEntries": [
{
"elementTypeCode": "<string>",
"styleTypeCode": "<string>",
"positionTypeCode": "<string>",
"value": "<string>"
}
]
}
'{
"success": true,
"data": "<unknown>"
}