curl --request POST \
--url https://api.example.com/admin/displaymode/limited-update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"displayModeID": 1234,
"displayModeReleaseID": 5678,
"isFeatured": 0,
"editions": [
1,
2,
3,
4,
5,
6,
7
],
"categoryIDs": [
1,
2,
3,
4,
5,
6,
7
]
}
'{
"success": true,
"data": "<unknown>"
}Make generic, limited, and exposure related updates to the data relating to a display mode from the admin side. This does not perform detailed updates on the display mode.
curl --request POST \
--url https://api.example.com/admin/displaymode/limited-update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"displayModeID": 1234,
"displayModeReleaseID": 5678,
"isFeatured": 0,
"editions": [
1,
2,
3,
4,
5,
6,
7
],
"categoryIDs": [
1,
2,
3,
4,
5,
6,
7
]
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.