Monid · OAuth Scopes

Monid OAuth Scopes

OAuth 2.0 searched

Monid publishes 5 OAuth 2.0 scopes via the authorizationCode flow. Scopes are the fine-grained permissions an application requests at authorization time to act against the Monid API on a user’s behalf.

Tokens are issued from https://clerk.app.monid.ai/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.

CompanyAgentsMCPToolsDataAPI Marketplace
Scopes: 5 Flows: authorizationCode Method: searched

OAuth endpoints

Authorization URL
https://clerk.app.monid.ai/oauth/authorize
Token URL
https://clerk.app.monid.ai/oauth/token
Flows
authorizationCode

Scopes (5)

ScopeDescriptionFlows
openid Required for OIDC. Enables ID tokens. authorizationCode
profile User's name and profile info. authorizationCode
email User's email address. authorizationCode
offline_access Return a refresh token so you can act while the user is offline. authorizationCode
user:org:read Read the user's organizations and workspaces. authorizationCode

Source

OAuth Scopes

Raw ↑
generated: '2026-07-23'
method: searched
source: https://api.monid.ai/.well-known/openid-configuration
docs: https://monid.ai/docs/integrations/oauth.md
schemes:
- name: OAuth2
  type: oauth2
  provider: Clerk (clerk.app.monid.ai)
  flows:
  - flow: authorizationCode
    authorizationUrl: https://clerk.app.monid.ai/oauth/authorize
    tokenUrl: https://clerk.app.monid.ai/oauth/token
    revocationUrl: https://clerk.app.monid.ai/oauth/token/revoke
    refreshSupported: true
    pkce: S256
  resource: https://api.monid.ai/v1
scopes:
- scope: openid
  description: Required for OIDC. Enables ID tokens.
  flows: [authorizationCode]
- scope: profile
  description: User's name and profile info.
  flows: [authorizationCode]
- scope: email
  description: User's email address.
  flows: [authorizationCode]
- scope: offline_access
  description: Return a refresh token so you can act while the user is offline.
  flows: [authorizationCode]
- scope: "user:org:read"
  description: Read the user's organizations and workspaces.
  flows: [authorizationCode]
notes: >-
  The OpenAPI declares only an HTTP bearer scheme (Monid API key `monid_live_...`
  or a Clerk-issued JWT). OAuth 2.0 scoped access is documented separately and
  advertised via the anonymous /.well-known/ discovery documents; agents obtain
  a user-delegated access token with these scopes to act on the user's own
  workspace. Authorization requests must include resource=https://api.monid.ai/v1.