Skip to main content

Get device authorization request

GET 

/v2/oidc/device_authorization/:userCode

Get the device authorization based on the provided "user code". This will return the device authorization request, which contains the device authorization id that is required to authorize the request once the user signed in or to deny it.

Request​

Path Parameters

    userCode stringrequired

    The user_code returned by the device authorization request and provided to the user by the device.

Responses​

OK

Schema

    deviceAuthorizationRequest

    object

    id string

    The unique identifier of the device authorization request to be used for authorizing or denying the request.

    clientId string

    The client_id of the application that initiated the device authorization request.

    scope string[]

    The scopes requested by the application.

    appName string

    Name of the client application.

    projectName string

    Name of the project the client application is part of.

Loading...