curl --request POST \
--url https://api.example.com/admin/queue/content-adjudicate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"concatID": null,
"wordID": null,
"languageID": null,
"decisionTypeCode": "P/D/E/S/A"
}
'{
"success": true,
"data": "<unknown>"
}Return all information required for Admin Queue Adjudicate Feed page
curl --request POST \
--url https://api.example.com/admin/queue/content-adjudicate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"concatID": null,
"wordID": null,
"languageID": null,
"decisionTypeCode": "P/D/E/S/A"
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.