Skip to main content
POST
/
displaymode
/
save-details
Create or update display mode with limited details.
curl --request POST \
  --url https://api.example.com/displaymode/save-details \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "languageID": 1,
  "displayModeID": 1234,
  "displayModeReleaseID": 5678,
  "title": "Cats Everywhere",
  "largeIntroText": "Brings cats into every corner of your existence",
  "explainerText": null,
  "homepageURL": null,
  "editions": [
    123
  ],
  "categoryIDs": [
    123
  ]
}
'
{
  "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
languageID
integer<int32>
default:1
displayModeID
integer<int32> | null
default:1234
displayModeReleaseID
integer<int32> | null
default:5678
title
string | null
default:Cats Everywhere
largeIntroText
string | null
default:Brings cats into every corner of your existence
explainerText
string | null
homepageURL
string | null
editions
integer<int32>[] | null
categoryIDs
integer<int32>[] | null

Response

Success

success
boolean
data
unknown