curl --request POST \
--url https://api.example.com/concat/reorder-media \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"toContentMedia": {
"code": "<string>",
"type": "<string>",
"ismConcatID": 123,
"medias": [
{
"mediaCode": "<string>",
"sortOrder": 123,
"isReusableByOthers": true
}
]
},
"fromContentMedia": {
"code": "<string>",
"type": "<string>",
"ismConcatID": 123,
"medias": [
{
"mediaCode": "<string>",
"sortOrder": 123,
"isReusableByOthers": true
}
]
}
}
'{
"success": true,
"data": "<unknown>"
}Reorders media item in its ordered position, as well as from one ism / concat to another in a specific ordered position.
curl --request POST \
--url https://api.example.com/concat/reorder-media \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"toContentMedia": {
"code": "<string>",
"type": "<string>",
"ismConcatID": 123,
"medias": [
{
"mediaCode": "<string>",
"sortOrder": 123,
"isReusableByOthers": true
}
]
},
"fromContentMedia": {
"code": "<string>",
"type": "<string>",
"ismConcatID": 123,
"medias": [
{
"mediaCode": "<string>",
"sortOrder": 123,
"isReusableByOthers": true
}
]
}
}
'{
"success": true,
"data": "<unknown>"
}