curl --request POST \
--url https://api.example.com/public/news/preview \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"publicSessionToken": "<string>",
"newsID": 123,
"languageID": 123,
"includeBody": false
}
'{
"success": true,
"data": "<unknown>"
}public Preview news articles.
curl --request POST \
--url https://api.example.com/public/news/preview \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"publicSessionToken": "<string>",
"newsID": 123,
"languageID": 123,
"includeBody": false
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.