curl --request POST \
--url https://api.example.com/displaymode/filter \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"displayModeIDs": null,
"languageID": 1,
"searchText": null,
"authorIserIDs": null,
"editionIDs": null,
"categoryIDs": null,
"submittableStatusTypeIDs": null,
"orderBy": null,
"fieldName": null,
"isFeatured": null,
"isTrending": null,
"homepageURL": null,
"page": 1,
"pageSize": 10,
"fromDate": null,
"toDate": null
}
'{
"success": true,
"data": "<unknown>"
}Gets all relevant display modes based on passing in any combination of filter parameters.
curl --request POST \
--url https://api.example.com/displaymode/filter \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"displayModeIDs": null,
"languageID": 1,
"searchText": null,
"authorIserIDs": null,
"editionIDs": null,
"categoryIDs": null,
"submittableStatusTypeIDs": null,
"orderBy": null,
"fieldName": null,
"isFeatured": null,
"isTrending": null,
"homepageURL": null,
"page": 1,
"pageSize": 10,
"fromDate": null,
"toDate": null
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.