Skip to main content
POST
/
ism
/
style
/
save
Save a single style for a specific ism within a specific concat.
curl --request POST \
  --url https://api.example.com/ism/style/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>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
ismConcatID
integer<int32>
styleCodeEntries
object[] | null

Response

Success

success
boolean
data
unknown