curl --request POST \
--url https://api.example.com/iser/displaymode/releases \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"languageID": 1,
"displayModeIDs": null,
"displayModeReleaseIDs": null,
"searchText": null,
"editionIDs": null,
"categoryIDs": null,
"submittableStatusTypeIDs": null,
"orderBy": null,
"fieldName": null,
"isFeatured": null,
"isTrending": null,
"isPopular": null,
"page": 1,
"pageSize": 10,
"fromDate": null,
"toDate": null
}
'{
"success": true,
"data": "<unknown>"
}Gets display mode releases authored by the current iser. This includes other filter params as well to further refine the results.
curl --request POST \
--url https://api.example.com/iser/displaymode/releases \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"languageID": 1,
"displayModeIDs": null,
"displayModeReleaseIDs": null,
"searchText": null,
"editionIDs": null,
"categoryIDs": null,
"submittableStatusTypeIDs": null,
"orderBy": null,
"fieldName": null,
"isFeatured": null,
"isTrending": null,
"isPopular": 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.