Lightsprint · OAuth Scopes

Lightsprint OAuth Scopes

OAuth 2.0 searched

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

Tokens are issued from https://lightsprint.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.

CompanyDeveloper ToolsArtificial IntelligenceAgentsSoftware DevelopmentProject ManagementCode GenerationTeam Collaboration
Scopes: 7 Flows: authorizationCode Method: searched

OAuth endpoints

Authorization URL
https://lightsprint.ai/oauth/authorize
Token URL
https://lightsprint.ai/oauth/token
Flows
authorizationCode

Scopes (7)

ScopeDescriptionFlows
tasks:read Read tasks on the workspace board. authorizationCode
tasks:write Create, update, delete, and claim tasks. authorizationCode
kanban:read Read the kanban board structure — stacks, sections, and task ordering. authorizationCode
comments:write Create, update, and delete comments on tasks. authorizationCode
agents:write Launch and stop cloud coding agents against a task. authorizationCode
plans:read Read generated plans (Plan Mode output). authorizationCode
plans:write Create and modify plans. authorizationCode

Source

OAuth Scopes

lightsprint-scopes.yml Raw ↑
generated: '2026-07-19'
method: searched
source: https://github.com/SprintsAI/n8n-nodes-lightsprint/blob/main/credentials/LightsprintOAuth2Api.credentials.ts
notes: >-
  Scope strings are recorded verbatim from the default `scope` value in the
  provider's published OAuth 2.0 credential definition. Lightsprint publishes no
  scopes/permissions reference page, so the descriptions below are honest readings of
  each scope's resource:action shape mapped to the API operations the n8n node calls
  under that scope — they are not quoted provider prose.
docs: null
schemes:
- name: LightsprintOAuth2Api
  source: https://github.com/SprintsAI/n8n-nodes-lightsprint/blob/main/credentials/LightsprintOAuth2Api.credentials.ts
  flows:
  - flow: authorizationCode
    authorizationUrl: https://lightsprint.ai/oauth/authorize
    tokenUrl: https://lightsprint.ai/oauth/token
scopes:
- scope: tasks:read
  description: Read tasks on the workspace board.
  flows: [authorizationCode]
  observed_operations:
  - 'GET /api/repos/{repoId}/tasks'
  - 'GET /api/tasks/{taskId}'
- scope: tasks:write
  description: Create, update, delete, and claim tasks.
  flows: [authorizationCode]
  observed_operations:
  - 'POST /api/repos/{repoId}/tasks'
  - 'PATCH /api/tasks/{taskId}'
  - 'DELETE /api/tasks/{taskId}'
  - 'POST /api/tasks/{taskId}/claim'
- scope: kanban:read
  description: Read the kanban board structure — stacks, sections, and task ordering.
  flows: [authorizationCode]
  observed_operations: []
- scope: comments:write
  description: Create, update, and delete comments on tasks.
  flows: [authorizationCode]
  observed_operations:
  - 'POST /api/tasks/{taskId}/comments'
  - 'PATCH /api/comments/{commentId}'
  - 'DELETE /api/comments/{commentId}'
- scope: agents:write
  description: Launch and stop cloud coding agents against a task.
  flows: [authorizationCode]
  observed_operations:
  - 'POST /api/tasks/{taskId}/cloud-agents/{provider}'
  - 'DELETE /api/tasks/{taskId}/cloud-agents/{provider}'
- scope: plans:read
  description: Read generated plans (Plan Mode output).
  flows: [authorizationCode]
  observed_operations: []
- scope: plans:write
  description: Create and modify plans.
  flows: [authorizationCode]
  observed_operations: []
observations:
- The published default scope set is granted as a single space-delimited string; no
  incremental or per-operation scope negotiation is documented.
- 'There is no `comments:read` scope in the default set even though the node reads
  comments via GET /api/tasks/{taskId}/comments — reads there appear to be covered by
  tasks:read.'
gaps:
- No public scopes/permissions reference page exists on lightsprint.ai; scopes are only
  discoverable from the published n8n credential source.