Vim · OAuth Scopes

Vim OAuth Scopes

OAuth 2.0 searched

Vim publishes 4 OAuth 2.0 scopes via the implicit and clientCredentials flows. Scopes are the fine-grained permissions an application requests at authorization time to act against the Vim API on a user’s behalf.

Tokens are issued from https://auth.getvim.com/oauth/token.

This index is generated from the provider’s OpenAPI security definitions (and, where available, its documented scope reference) and refreshes on every APIs.io network build. Browse every provider’s scopes at scopes.apis.io.

HealthcareUnited StatesClinical AIEHR IntegrationPoint of CareInteroperabilityValue-Based CareCare GapsOAuth
Scopes: 4 Flows: implicit, clientCredentials Method: searched

OAuth endpoints

Token URL
https://auth.getvim.com/oauth/token
Flows
implicitclientCredentials

Scopes (4)

ScopeDescriptionFlows
openid OIDC — issue an ID token.
profile Basic profile claims.
email Email claim.
offline_access Issue a refresh token.

Source

OAuth Scopes

Raw ↑
generated: '2026-07-24'
method: searched
source: openapi/vim-data-source-openapi-original.json
docs: https://auth.getvim.com/.well-known/openid-configuration
# The Data Source OpenAPI declares an oauth2 scheme with no populated scopes;
# real client-credentials auth issues a bearer JWT (audience-scoped, not
# scope-scoped). The Auth0 authorization server backing the Vim REST API
# (auth.getvim.com) advertises the standard OIDC scopes below.
schemes:
  - name: service
    type: oauth2
    source: openapi/vim-data-source-openapi-original.json
    flows:
      - flow: implicit
  - name: auth.getvim.com (Auth0 tenant)
    type: oauth2
    source: well-known/vim-openid-configuration.json
    flows:
      - flow: clientCredentials
        tokenUrl: https://auth.getvim.com/oauth/token
scopes:
  - scope: openid
    description: OIDC — issue an ID token.
    sources: [well-known/vim-openid-configuration.json]
  - scope: profile
    description: Basic profile claims.
    sources: [well-known/vim-openid-configuration.json]
  - scope: email
    description: Email claim.
    sources: [well-known/vim-openid-configuration.json]
  - scope: offline_access
    description: Issue a refresh token.
    sources: [well-known/vim-openid-configuration.json]
notes: >-
  scopes_supported at auth.getvim.com also includes name, given_name,
  family_name, nickname, email_verified, picture, created_at, identities, phone,
  address. Machine-to-machine Data Source access uses the client_credentials
  grant with an audience rather than granular scopes.