Skip to main content
POST
/
admin
/
displaymode
/
limited-update
Make generic, limited, and exposure related updates to the data relating to a display mode from the admin side.
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>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
displayModeID
integer<int32> | null
default:1234
displayModeReleaseID
integer<int32> | null
default:5678
editions
integer<int32>[] | null
categoryIDs
integer<int32>[] | null

Response

Success

success
boolean
data
unknown