curl --request POST \
--url https://api.example.com/admin/ai/treatments/get-alternate-treatments-by-id \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"mediaLogID": 6616,
"languageID": 1,
"page": 1,
"pageSize": 20,
"orderBy": null,
"fieldName": null,
"searchTerm": null
}
'{
"success": true,
"data": "<unknown>"
}Get alternate image treatment summary info by media log id. These are the list of all other treatments that were applied to the same originally uploaded image.
curl --request POST \
--url https://api.example.com/admin/ai/treatments/get-alternate-treatments-by-id \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"mediaLogID": 6616,
"languageID": 1,
"page": 1,
"pageSize": 20,
"orderBy": null,
"fieldName": null,
"searchTerm": null
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.