Skip to main content
POST
/
admin
/
language
/
save
Save or update language details
curl --request POST \
  --url https://api.example.com/admin/language/save \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "languageID": null,
  "isActiveForTranslation": null,
  "isActiveForiOSApp": null,
  "isActiveForWebsite": null,
  "isHidden": null,
  "compositionLine1": null,
  "compositionLine2": null,
  "placeholderLine1": null,
  "placeholderLine2": null
}
'
{
  "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> | null
isActiveForTranslation
boolean | null
isActiveForiOSApp
boolean | null
isActiveForWebsite
boolean | null
isHidden
boolean | null
compositionLine1
string | null
compositionLine2
string | null
placeholderLine1
string | null
placeholderLine2
string | null

Response

Success

success
boolean
data
unknown