curl --request POST \
--url https://api.example.com/public/concat-feed \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"publicSessionToken": "<string>",
"languageID": 1,
"editionID": 1,
"categoryID": null,
"calendarPeriodTypeID": null,
"constrainToHasMedia": true,
"page": 1,
"pageSize": 10
}
'{
"success": true,
"data": "<unknown>"
}Returns the central concat feed, used on the home page when a user is not logged in.
curl --request POST \
--url https://api.example.com/public/concat-feed \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"publicSessionToken": "<string>",
"languageID": 1,
"editionID": 1,
"categoryID": null,
"calendarPeriodTypeID": null,
"constrainToHasMedia": true,
"page": 1,
"pageSize": 10
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.