GET
/
external-auth
/
{externalauth}
curl --request GET \
  --url https://cloud.local.wirtual.dev/api/v2/external-auth/{externalauth} \
  --header 'Wirtual-Session-Token: <api-key>'
{
  "app_install_url": "<string>",
  "app_installable": true,
  "authenticated": true,
  "device": true,
  "display_name": "<string>",
  "installations": [
    {
      "account": {
        "avatar_url": "<string>",
        "id": 123,
        "login": "<string>",
        "name": "<string>",
        "profile_url": "<string>"
      },
      "configure_url": "<string>",
      "id": 123
    }
  ],
  "user": {
    "avatar_url": "<string>",
    "id": 123,
    "login": "<string>",
    "name": "<string>",
    "profile_url": "<string>"
  }
}

Authorizations

Wirtual-Session-Token
string
header
required

Path Parameters

externalauth
string
required

Git Provider ID

Response

200 - application/json
OK
app_install_url
string

AppInstallURL is the URL to install the app.

app_installable
boolean

AppInstallable is true if the request for app installs was successful.

authenticated
boolean
device
boolean
display_name
string
installations
object[]

AppInstallations are the installations that the user has access to.

user
object

User is the user that authenticated with the provider.