curl --request POST \
--url https://api.example.com/admin/translationregistry/pending/translate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"itemTypeCode": "COUNTRY",
"itemRecordID": null
}
'{
"success": true,
"data": "<unknown>"
}Translate pending items in the translation registry
curl --request POST \
--url https://api.example.com/admin/translationregistry/pending/translate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"itemTypeCode": "COUNTRY",
"itemRecordID": null
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.