Skip to main content
POST
/
public
/
concat-feed
Public version of the concat/feed API call, used for non-authenticated preview experiences on the home page.
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>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
publicSessionToken
string | null
languageID
integer<int32>
default:1
editionID
integer<int32> | null
default:1
categoryID
integer<int32> | null
calendarPeriodTypeID
integer<int32> | null
constrainToHasMedia
boolean | null
default:true
page
integer<int32>
default:1
pageSize
integer<int32>
default:10

Response

Success

success
boolean
data
unknown