GET/api/apps/{app_id}/check-authorizationAuthenticated

Check whether the caller authorized an app

Reports whether the signed-in user has already authorized the client application to receive tokens on their behalf. The auth server's own app is always reported as authorized.

operationId get_api_apps_app_id_check_authorizationClient applications

Authentication & permissionsAuthenticated

Any authenticated user

Accepted credentials
Who may call
Any authenticated user

Path parameters

NameTypeDescription
app_id*string

Client application id

Responses

application/json
AppAuthorizationStatusResponse
PropertyTypeDescription
success*true
authorized*boolean

Whether the caller has authorized the app to receive tokens on their behalf

JSONExample
"success"true
"authorized"true

Example request

bashcurl
curl -X GET 'https://auth.schemavaults.com/api/apps/<app_id>/check-authorization' \
  -b 'refresh_token_<auth_server_app_id>=<value>'