curl --request POST \
--url https://api.example.com/media/assign-multiple-media \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"situationTypeID": 1,
"code": "AB41D048-FDF7-4FF6-9D50-CDC4D9BF5EFF",
"ismConcatID": 123,
"entityTypeID": 123,
"multipleMedia": [
{
"sourceType": "DB",
"mediaCode": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"thirdPartyMediaCode": "<string>",
"mediaURL": "<string>",
"thumbnailPointer": "<string>",
"tinyPointer": "<string>",
"mediaTypeID": 1
}
]
}
'{
"success": true,
"data": "<unknown>"
}Assign media items that are found from an image/video search, (stock photos, giphy animations, or videos) to an ism or concat.
curl --request POST \
--url https://api.example.com/media/assign-multiple-media \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"situationTypeID": 1,
"code": "AB41D048-FDF7-4FF6-9D50-CDC4D9BF5EFF",
"ismConcatID": 123,
"entityTypeID": 123,
"multipleMedia": [
{
"sourceType": "DB",
"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.