curl --request POST \
--url https://api.example.com/media/generate-image-prompts-for-generic-usage \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entityID": 123,
"entitySlug": "",
"entityTypeID": 1,
"languageID": 1,
"isBackground": false
}
'{
"success": true,
"data": "<unknown>"
}Generates prompts that can be used to generate AI based images for use as a ‘cover image’, from the generic passed-in values alone.
curl --request POST \
--url https://api.example.com/media/generate-image-prompts-for-generic-usage \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entityID": 123,
"entitySlug": "",
"entityTypeID": 1,
"languageID": 1,
"isBackground": false
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.