Query parameters

application/json

Body Required

Responses

PUT /api/opendata/oauth/server_clients/{identifier}
curl \
 --request PUT 'https://replace-with-own-host.iw-erp.de/api/opendata/oauth/server_clients/{identifier}' \
 --header "x-session-token: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"data":{"name":"string","scopes":"string","redirect_uri":"string","active":true,"allow_plain_text_pkce":true,"confidential":true}}'
Request examples
{
  "data": {
    "name": "string",
    "scopes": "string",
    "redirect_uri": "string",
    "active": true,
    "allow_plain_text_pkce": true,
    "confidential": true
  }
}
Response examples (200)
{
  "identifier": "string",
  "name": "string",
  "scopes": "string",
  "redirect_uri": "string",
  "image_url": "string"
}