curl --request POST \
--url https://api.example.com/displaymode/image-genre/filter \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"authorIserIDs": [
702,
834
],
"submittableStatusTypeIDs": [
1,
2,
3,
4,
5
],
"priorityTiers": [
1,
2,
3,
4
],
"imageGenreIDs": [
900,
901
],
"languageID": 1,
"searchText": null,
"isFeatured": null,
"page": 1,
"pageSize": 20,
"orderBy": null,
"fieldName": null,
"genreGroupIDs": [
1,
2,
3
],
"isEscalated": null,
"hasActionConfigs": null,
"hasDisplayModeReleasesUsingIt": null
}
'{
"success": true,
"data": "<unknown>"
}Gets all relevant Image Genre based on passing in any combination of filter parameters.
curl --request POST \
--url https://api.example.com/displaymode/image-genre/filter \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"authorIserIDs": [
702,
834
],
"submittableStatusTypeIDs": [
1,
2,
3,
4,
5
],
"priorityTiers": [
1,
2,
3,
4
],
"imageGenreIDs": [
900,
901
],
"languageID": 1,
"searchText": null,
"isFeatured": null,
"page": 1,
"pageSize": 20,
"orderBy": null,
"fieldName": null,
"genreGroupIDs": [
1,
2,
3
],
"isEscalated": null,
"hasActionConfigs": null,
"hasDisplayModeReleasesUsingIt": null
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.