curl --request POST \
--url https://api.example.com/public/edition/config/all \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"editionID": 1,
"languageID": 1,
"publicSessionToken": "<string>"
}
'{
"success": true,
"data": "<unknown>"
}Retrieves the public edition-based configuration data used to showcase isms on the public external site. These configuration entries demonstrate the capabilities of the is platform and isms in general.
curl --request POST \
--url https://api.example.com/public/edition/config/all \
--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.