curl --request POST \
--url https://api.example.com/displaymode/slot/assign-media \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"displayModeReleaseID": 123,
"situationTypeID": 1,
"sourceType": "DB",
"mediaSourceType": 1,
"stagedFileCode": "AB41D048-FDF7-4FF6-9D50-CDC4D9BF5EFF",
"slotID": 123,
"mediaCode": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"thirdPartyMediaCode": "<string>",
"mediaURL": "<string>",
"thumbnailPointer": "<string>",
"tinyPointer": "<string>",
"mediaTypeID": 1
}
'{
"success": true,
"data": "<unknown>"
}Reassign media to Display Mode Slots.
curl --request POST \
--url https://api.example.com/displaymode/slot/assign-media \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"displayModeReleaseID": 123,
"situationTypeID": 1,
"sourceType": "DB",
"mediaSourceType": 1,
"stagedFileCode": "AB41D048-FDF7-4FF6-9D50-CDC4D9BF5EFF",
"slotID": 123,
"mediaCode": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"thirdPartyMediaCode": "<string>",
"mediaURL": "<string>",
"thumbnailPointer": "<string>",
"tinyPointer": "<string>",
"mediaTypeID": 1
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.
11, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12