curl --request POST \
--url https://api.example.com/public/edition/config/minimal \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"editionID": 1,
"languageID": 1,
"publicSessionToken": "<string>"
}
'{
"success": true,
"data": "<unknown>"
}Retrieves only the absolute minimum required public edition-based configuration data to load isms on the external site.
curl --request POST \
--url https://api.example.com/public/edition/config/minimal \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"editionID": 1,
"languageID": 1,
"publicSessionToken": "<string>"
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.