Oasis Labs · OAuth Scopes

Oasis Labs OAuth Scopes

OAuth 2.0 searched

Oasis Labs publishes 7 OAuth 2.0 scopes. Scopes are the fine-grained permissions an application requests at authorization time to act against the Oasis Labs API on a user’s behalf.

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.

CompanyPrivacyData GovernanceConfidential ComputingBlockchainDifferential PrivacyMachine LearningDeveloper PlatformWeb3
Scopes: 7 Flows: Method: searched

Scopes (7)

ScopeDescriptionFlows
parcel.full Full access to all Parcel resources and actions (default scope).
parcel.identity.* Manage identities (create/read/update/delete).
parcel.dataset.* Manage datasets — upload, read metadata, update, delete tokenized data.
parcel.app.* Manage Parcel apps and their configuration.
parcel.grant.* Manage access grants that govern who can compute over which data.
parcel.permission.* Manage permissions attached to apps and grants.
parcel.job.* Manage confidential compute jobs.

Source

OAuth Scopes

oasis-labs-scopes.yml Raw ↑
generated: '2026-07-20'
method: searched
source: >-
  github.com/oasislabs/parcel-clients typescript/src/token.ts (Scope type
  definition) — parcel.full | parcel.<resource>.<action>
docs: https://docs.oasislabs.com/parcel/latest
schemes:
- name: OAuth2ClientCredentials
  flow: clientCredentials
  tokenUrl: https://auth.oasislabs.com/oauth/token
  audience: https://api.oasislabs.com/parcel
scope_grammar: "parcel.<resource>.<action>"
resources:
- identity
- dataset
- app
- grant
- permission
- job
actions:
- create
- read
- update
- delete
scopes:
- scope: parcel.full
  description: Full access to all Parcel resources and actions (default scope).
- scope: "parcel.identity.*"
  description: Manage identities (create/read/update/delete).
- scope: "parcel.dataset.*"
  description: Manage datasets — upload, read metadata, update, delete tokenized data.
- scope: "parcel.app.*"
  description: Manage Parcel apps and their configuration.
- scope: "parcel.grant.*"
  description: Manage access grants that govern who can compute over which data.
- scope: "parcel.permission.*"
  description: Manage permissions attached to apps and grants.
- scope: "parcel.job.*"
  description: Manage confidential compute jobs.
notes: >-
  Scopes follow the pattern parcel.<resource>.<action> where <resource> is one of
  identity, dataset, app, grant, permission, job (or *) and <action> is one of
  create, read, update, delete (or *). parcel.full grants everything. The wildcard
  entries above enumerate the per-resource families; concrete tokens combine a
  single resource with a single action (e.g. parcel.dataset.read).