Luminance Tasks API

The Tasks API from Luminance — 14 operation(s) for tasks.

Operations 19

GET /projects/{project-id}/tasks Get a list of tasks in a particular project, including alerts and knowledge banks
GET /projects/{project-id}/tasks/{task-id} Get information on a specific task, including alerts and knowledge banks
POST /projects/{project-id}/tasks/knowledge_bank_from_template Create a new criteria-based Knowledge Bank by specifying a document to create knowledge bank positions from and a contract type for that document, resulting in a precedent type tas
GET /api2/projects/{project_id}/tasks List tasks (including Knowledge Banks)
GET /api2/projects/{project_id}/tasks/{task_id} Get task
POST /api2/projects/{project_id}/tasks/knowledge_bank_from_template Create Knowledge Bank from template and generate positions
GET /api2/projects/{project_id}/tasks/{task_id}/reviews List task reviews
POST /api2/projects/{project_id}/tasks/{task_id}/reviews Create task review
PATCH /api2/projects/{project_id}/tasks/{task_id}/reviews Update multiple task reviews by filter
GET /api2/projects/{project_id}/tasks/{task_id}/reviews/{review_id} Get task review
PATCH /api2/projects/{project_id}/tasks/{task_id}/reviews/{review_id} Update task review
GET /api2/projects/{project_id}/tasks/{task_id}/reviews/{review_id}/analysis Get task review analysis results
GET /api2/projects/{project_id}/tasks/{task_id}/reviews/documents List documents for task reviews
DELETE /api2/projects/{project_id}/tasks/{task_id}/reviews/documents Delete multiple documents in task reviews
GET /api2/projects/{project_id}/tasks/{task_id}/reviews/documents/{document_id} Get document in task review
DELETE /api2/projects/{project_id}/tasks/{task_id}/reviews/documents/{document_id} Delete document in task review
GET /api2/projects/{project_id}/tasks/{task_id}/reviews/documents/{document_id}/download Download document file (task review path)
GET /api2/projects/{project_id}/tasks/{task_id}/reviews/documents/{document_id}/annotations List document annotations (task review path)
GET /api2/projects/{project_id}/tasks/{task_id}/reviews/documents/{document_id}/annotations/annotationText Retrieve annotation text (task review path)

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/luminance-tasks-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

luminance-tasks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Luminance Tasks API
  version: '1.0'
  description: 'Operations tagged Tasks across 4 of this provider''s published API definitions: luminance-api-v1-3-openapi-original.yml, luminance-api-v1-4-openapi-original.yml, luminance-public-api-v2-openapi-original.yml, luminance-tasks-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://{moniker}.app.luminance.com
  description: Your Luminance instance
  variables:
    moniker:
      default: your-instance
      description: Instance moniker (e.g. acme)
tags:
- name: Tasks
paths:
  /projects/{project-id}/tasks:
    get:
      tags:
      - Tasks
      summary: Get a list of tasks in a particular project, including alerts and knowledge banks
      parameters:
      - $ref: '#/components/parameters/limit'
      - $ref: '#/components/parameters/project-id'
      - $ref: '#/components/parameters/taskId'
      - $ref: '#/components/parameters/moniker'
      - $ref: '#/components/parameters/TaskName'
      - $ref: '#/components/parameters/createdBy'
      - $ref: '#/components/parameters/taskDescription'
      - $ref: '#/components/parameters/auto_sync'
      - $ref: '#/components/parameters/taskType'
      security:
      - OAuth2: []
      responses:
        '200':
          $ref: '#/components/responses/task_200'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '405':
          $ref: '#/components/responses/405'
        '422':
          $ref: '#/components/responses/422'
        '429':
          $ref: '#/components/responses/429'
        '500':
          $ref: '#/components/responses/500'
  /projects/{project-id}/tasks/{task-id}:
    get:
      tags:
      - Tasks
      summary: Get information on a specific task, including alerts and knowledge banks
      parameters:
      - $ref: '#/components/parameters/project-id'
      - $ref: '#/components/parameters/task-id'
      security:
      - OAuth2: []
      responses:
        '200':
          $ref: '#/components/responses/task_200'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '405':
          $ref: '#/components/responses/405'
        '422':
          $ref: '#/components/responses/422'
        '429':
          $ref: '#/components/responses/429'
        '500':
          $ref: '#/components/responses/500'
  /projects/{project-id}/tasks/knowledge_bank_from_template:
    post:
      tags:
      - Tasks
      summary: Create a new criteria-based Knowledge Bank by specifying a document to create knowledge bank positions from and a contract type for that document, resulting in a precedent type task being created for the specified module
      requestBody:
        description: See schema for options and required information in body of request
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/KnowledgeBankFromTemplate'
      parameters:
      - $ref: '#/components/parameters/project-id'
      - $ref: '#/components/parameters/async'
      security:
      - OAuth2: []
      responses:
        '200':
          $ref: '#/components/responses/knowledge_bank_from_template_202'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '405':
          $ref: '#/components/responses/405'
        '422':
          $ref: '#/components/responses/422'
        '429':
          $ref: '#/components/responses/429'
        '500':
          $ref: '#/components/responses/500'
  /api2/projects/{project_id}/tasks:
    get:
      tags:
      - Tasks
      summary: List tasks (including Knowledge Banks)
      parameters:
      - $ref: '#/components/parameters/projectId'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example:
                id: 1
                created_at: '2024-01-15T12:00:00.000Z'
                created_by: 1
                moniker: Hello World
                name: Joe Bloggs
                project_id: 1
                parent_id: 1
                description: Sample text
                settings: {}
                filter: {}
                full_families: false
                auto_sync: false
                type: document
                tags: []
      security:
      - bearerAuth: []
    servers:
    - url: https://{moniker}.app.luminance.com
      description: Your Luminance instance
      variables:
        moniker:
          default: your-instance
          description: Instance moniker (e.g. acme)
  /api2/projects/{project_id}/tasks/{task_id}:
    get:
      tags:
      - Tasks
      summary: Get task
      parameters:
      - $ref: '#/components/parameters/projectId'
      - in: path
        name: task_id
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example:
                id: 1
                created_at: '2024-01-15T12:00:00.000Z'
                created_by: 1
                moniker: Hello World
                name: Joe Bloggs
                project_id: 1
                parent_id: 1
                description: Sample text
                settings: {}
                filter: {}
                full_families: false
                auto_sync: false
                type: document
                tags: []
      security:
      - bearerAuth: []
    servers:
    - url: https://{moniker}.app.luminance.com
      description: Your Luminance instance
      variables:
        moniker:
          default: your-instance
          description: Instance moniker (e.g. acme)
  /api2/projects/{project_id}/tasks/knowledge_bank_from_template:
    post:
      tags:
      - Tasks
      summary: Create Knowledge Bank from template and generate positions
      parameters:
      - $ref: '#/components/parameters/projectId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                document_id:
                  type: integer
                contract_type:
                  type: string
                include_luminance_basis:
                  type: boolean
              required:
              - name
              - document_id
              - contract_type
      responses:
        '202':
          description: Accepted
        '422':
          description: Validation error
      security:
      - bearerAuth: []
    servers:
    - url: https://{moniker}.app.luminance.com
      description: Your Luminance instance
      variables:
        moniker:
          default: your-instance
          description: Instance moniker (e.g. acme)
  /api2/projects/{project_id}/tasks/{task_id}/reviews:
    get:
      tags:
      - Tasks
      summary: List task reviews
      parameters:
      - $ref: '#/components/parameters/projectId'
      - in: path
        name: task_id
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example:
                id: 1
                created_at: '2024-01-15T12:00:00.000Z'
                created_by: 1
                task_id: 1
                document_id: 1
                state: active
                review_state: pending
                assigned_to: 1
                assigned_at: '2024-01-15T12:00:00.000Z'
                outcome: null
      security:
      - bearerAuth: []
    post:
      tags:
      - Tasks
      summary: Create task review
      parameters:
      - $ref: '#/components/parameters/projectId'
      - in: path
        name: task_id
        required: true
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                task_id:
                  type: integer
                document_id:
                  type: integer
              required:
              - task_id
              - document_id
      responses:
        '201':
          description: Created
      security:
      - bearerAuth: []
    patch:
      tags:
      - Tasks
      summary: Update multiple task reviews by filter
      parameters:
      - $ref: '#/components/parameters/projectId'
      - in: path
        name: task_id
        required: true
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example:
                id: 1
                created_at: '2024-01-15T12:00:00.000Z'
                created_by: 1
                task_id: 1
                document_id: 1
                state: active
                review_state: pending
                assigned_to: 1
                assigned_at: '2024-01-15T12:00:00.000Z'
                outcome: null
      security:
      - bearerAuth: []
    servers:
    - url: https://{moniker}.app.luminance.com
      description: Your Luminance instance
      variables:
        moniker:
          default: your-instance
          description: Instance moniker (e.g. acme)
  /api2/projects/{project_id}/tasks/{task_id}/reviews/{review_id}:
    get:
      tags:
      - Tasks
      summary: Get task review
      parameters:
      - $ref: '#/components/parameters/projectId'
      - in: path
        name: task_id
        required: true
        schema:
          type: integer
      - in: path
        name: review_id
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example:
                id: 1
                created_at: '2024-01-15T12:00:00.000Z'
                created_by: 1
                task_id: 1
                document_id: 1
                state: active
                review_state: pending
                assigned_to: 1
                assigned_at: '2024-01-15T12:00:00.000Z'
                outcome: null
      security:
      - bearerAuth: []
    patch:
      tags:
      - Tasks
      summary: Update task review
      parameters:
      - $ref: '#/components/parameters/projectId'
      - in: path
        name: task_id
        required: true
        schema:
          type: integer
      - in: path
        name: review_id
        required: true
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example:
                id: 1
                created_at: '2024-01-15T12:00:00.000Z'
                created_by: 1
                task_id: 1
                document_id: 1
                state: active
                review_state: pending
                assigned_to: 1
                assigned_at: '2024-01-15T12:00:00.000Z'
                outcome: null
      security:
      - bearerAuth: []
    servers:
    - url: https://{moniker}.app.luminance.com
      description: Your Luminance instance
      variables:
        moniker:
          default: your-instance
          description: Instance moniker (e.g. acme)
  /api2/projects/{project_id}/tasks/{task_id}/reviews/{review_id}/analysis:
    get:
      tags:
      - Tasks
      summary: Get task review analysis results
      parameters:
      - $ref: '#/components/parameters/projectId'
      - in: path
        name: task_id
        required: true
        schema:
          type: integer
      - in: path
        name: review_id
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example:
                paragraph_weights: {}
                missing_components: {}
      security:
      - bearerAuth: []
    servers:
    - url: https://{moniker}.app.luminance.com
      description: Your Luminance instance
      variables:
        moniker:
          default: your-instance
          description: Instance moniker (e.g. acme)
  /api2/projects/{project_id}/tasks/{task_id}/reviews/documents:
    get:
      tags:
      - Tasks
      summary: List documents for task reviews
      parameters:
      - $ref: '#/components/parameters/projectId'
      - in: path
        name: task_id
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example:
                id: 1
                created_at: '2024-01-15T12:00:00.000Z'
                created_by: 1
                folder_id: 1
                parent_id: 1
                project_id: 1
                name: Joe Bloggs
                media_type: application/pdf
                state: active
                version_group: 1
                version: 4.1.7
                version_state: active
      security:
      - bearerAuth: []
    delete:
      tags:
      - Tasks
      summary: Delete multiple documents in task reviews
      parameters:
      - $ref: '#/components/parameters/projectId'
      - in: path
        name: task_id
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: No Content
      security:
      - bearerAuth: []
    servers:
    - url: https://{moniker}.app.luminance.com
      description: Your Luminance instance
      variables:
        moniker:
          default: your-instance
          description: Instance moniker (e.g. acme)
  /api2/projects/{project_id}/tasks/{task_id}/reviews/documents/{document_id}:
    get:
      tags:
      - Tasks
      summary: Get document in task review
      parameters:
      - $ref: '#/components/parameters/projectId'
      - in: path
        name: task_id
        required: true
        schema:
          type: integer
      - in: path
        name: document_id
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example:
                id: 1
                created_at: '2024-01-15T12:00:00.000Z'
                created_by: 1
                folder_id: 1
                parent_id: 1
                project_id: 1
                name: Joe Bloggs
                media_type: application/pdf
                state: active
                version_group: 1
                version: 4.1.7
                version_state: active
        '404':
          description: Not found
      security:
      - bearerAuth: []
    delete:
      tags:
      - Tasks
      summary: Delete document in task review
      parameters:
      - $ref: '#/components/parameters/projectId'
      - in: path
        name: task_id
        required: true
        schema:
          type: integer
      - in: path
        name: document_id
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: No Content
      security:
      - bearerAuth: []
    servers:
    - url: https://{moniker}.app.luminance.com
      description: Your Luminance instance
      variables:
        moniker:
          default: your-instance
          description: Instance moniker (e.g. acme)
  /api2/projects/{project_id}/tasks/{task_id}/reviews/documents/{document_id}/download:
    get:
      tags:
      - Tasks
      summary: Download document file (task review path)
      parameters:
      - $ref: '#/components/parameters/projectId'
      - in: path
        name: task_id
        required: true
        schema:
          type: integer
      - in: path
        name: document_id
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: File stream
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
        '404':
          description: Not found
      security:
      - bearerAuth: []
    servers:
    - url: https://{moniker}.app.luminance.com
      description: Your Luminance instance
      variables:
        moniker:
          default: your-instance
          description: Instance moniker (e.g. acme)
  /api2/projects/{project_id}/tasks/{task_id}/reviews/documents/{document_id}/annotations:
    get:
      tags:
      - Tasks
      summary: List document annotations (task review path)
      parameters:
      - $ref: '#/components/parameters/projectId'
      - in: path
        name: task_id
        required: true
        schema:
          type: integer
      - in: path
        name: document_id
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example:
                id: 1
                created_at: '2024-01-15T12:00:00.000Z'
                created_by: 1
                document_id: 1
                type: document
                roles:
                - admin
                content: Sample text
                state: active
                external_reference: {}
      security:
      - bearerAuth: []
    servers:
    - url: https://{moniker}.app.luminance.com
      description: Your Luminance instance
      variables:
        moniker:
          default: your-instance
          description: Instance moniker (e.g. acme)
  /api2/projects/{project_id}/tasks/{task_id}/reviews/documents/{document_id}/annotations/annotationText:
    get:
      tags:
      - Tasks
      summary: Retrieve annotation text (task review path)
      parameters:
      - $ref: '#/components/parameters/projectId'
      - in: path
        name: task_id
        required: true
        schema:
          type: integer
      - in: path
        name: document_id
        required: true
        schema:
          type: integer
      - in: query
        name: id
        required: true
        schema:
          oneOf:
          - type: integer
          - type: array
            items:
              type: integer
      - in: query
        name: fullParagraph
        schema:
          type: string
          enum:
          - 'true'
          - 'false'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example:
                text: Sample text
      security:
      - bearerAuth: []
    servers:
    - url: https://{moniker}.app.luminance.com
      description: Your Luminance instance
      variables:
        moniker:
          default: your-instance
          description: Instance moniker (e.g. acme)
components:
  parameters:
    TaskName:
      name: name
      in: query
      description: Name of Task
      required: false
      schema:
        type: string
        format: string
        minimum: 0
    auto_sync:
      name: auto_sync
      in: query
      description: If auto-sync is automatic (true) or staging (false). If this is set to null then no auto-sync is run
      required: false
      schema:
        type: boolean
        format: boolean
        minimum: 0
    task-id:
      name: task-id
      in: path
      description: Task ID
      required: true
      schema:
        type: integer
        format: int32
        minimum: 0
    limit:
      name: limit
      in: query
      description: Maximum number of objects that can be retrieved.
      required: false
      schema:
        type: integer
        format: int32
        minimum: 0
        default: 50
    createdBy:
      name: created_by
      in: query
      description: User ID of Creator
      required: false
      schema:
        type: integer
        format: int32
        minimum: 0
      example: 4
    taskDescription:
      name: description
      in: query
      description: Task Description
      required: false
      schema:
        type: string
        format: string
        minimum: 0
    taskId:
      name: id
      in: query
      description: Unique Task ID(s)
      required: false
      schema:
        type: integer
        format: int32
        minimum: 0
    moniker:
      name: moniker
      in: query
      description: Shortened Name of Project
      required: false
      schema:
        type: string
    taskType:
      name: type
      in: query
      description: Type of Task - Knowledge Banks are 'precedent' type tasks
      required: false
      schema:
        type: string
        enum:
        - task
        - precedent
        - alert
        - comparison
    async:
      name: async
      in: query
      description: Whether to make the call synchronously or wait for the precedent type task to be created asynchronously when creating a Knowledge Bank from template.
      required: true
      schema:
        type: boolean
        format: boolean
        minimum: 0
    project-id:
      name: project-id
      in: path
      description: Project ID
      required: true
      schema:
        type: integer
        format: int32
        minimum: 0
    moniker_2:
      name: moniker
      in: query
      description: Shortened Name of Project or Workflow
      required: false
      schema:
        type: string
    projectId:
      in: path
      name: project_id
      required: true
      schema:
        type: integer
  schemas:
    KnowledgeBankFromTemplate:
      type: object
      description: Payload necessary to create a knowledge bank from a specified document ID of the specified contract type
      properties:
        document_id:
          type: integer
          example: 698
          description: The document ID to find positional information in and generate a knowledge bank from
        contract_type:
          type: string
          enum:
          - non%2Ddisclosure-agreement
          - services-agreement
          example: non%2Ddisclosure-agreement
          description: Select the from the available Luminance contract type modules which can be used to generate positions from ontracts of that type
        include_luminance_basis:
          type: boolean
          example: false
          description: Whether or not to include standard Luminance position information in this knowledge bank from the selected module, or only to use position information found in the specified document ID
        name:
          type: string
          example: New Knowledge Bank from for Master Services Agreement
          description: the name for the new Knowledge Bank created
    Task:
      type: object
      properties:
        id:
          type: integer
          example: 53
        created_at:
          type: string
          format: date-time
          example: '2023-02-01T10:11:04.678Z'
        created_by:
          type: integer
          example: 9
        moniker:
          type: string
          example: reviewnda
        name:
          type: string
          example: Review NDAs
        project_id:
          type: integer
          example: 5
        parent_id:
          type: integer
          example: 2
        description:
          type: string
          example: null
        workspace_id:
          type: integer
          example: 6
          description: ID of the workspace the task is associated with, if present, associated only with Discovery type projects
        settings:
          type: object
          example:
            last_synced: '2023-05-17T11:49:18.240Z'
            completionConditions: []
        filter:
          type: object
          description: Object containing filters attached to the task to automatically or manually identify and create task reviews for document objects matching the filters and uploaded to the project
          example:
            op: and
            analyze: true
            annotation:0.type: i:commercial-and-operations
        full_families:
          type: boolean
          example: false
          description: Boolean value indicating whether the task was created to include full 'families' of parent/attachment document relations or not
        auto_sync:
          type: boolean
          example: false
          description: Boolean value indicating whether reviews are automatically created in the task for document objects matching the 'filter's or not
        type:
          description: Type of Task - Knowledge Banks are 'precedent' type tasks
          required: false
          type: string
          enum:
          - task
          - precedent
          - alert
          - comparison
        tags:
          required: false
          type: array
          items:
            type: string
          example:
          - Review Level 1
          - Review Level 2
  responses:
    '422':
      description: Unprocessable Entity - the request was well formed, but not processable
    task_200:
      description: JSON array of Tasks or a single JSON task object if task ID is referenced in the path
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Task'
          example:
            id: 16
            created_at: '2018-12-21T14:49:38.113Z'
            created_by: 7
            moniker: tes
            name: Test Task
            project_id: 2
            parent_id: null
            description: null
            workspace_id: null
            settings:
              last_synced: '2023-05-17T11:49:18.240Z'
              completionConditions: []
            filter:
              op: and
              analyze: true
              annotation:0.type: documenttype
              annotation:0.content.type: i:commercial-and-operations
            full_families: false
            auto_sync: false
            type: task
            tags: []
    '401':
      description: Unauthorized - the authentication provided was invalid
    knowledge_bank_from_template_202:
      description: JSON object of message and resulting taskId generated to create a Knowledge Bank from template. Bear in mind that while the task may be created, positions may take longer to generate (up to 15 minutes).
      content:
        application/json:
          schema:
            message:
              type: string
              example: Knowledge Bank created. Generating positions from provided template.
            task_id:
              type: integer
              description: taskID of the newly created 'precedent' type task created as a Knowledge Bank in the user interface
          example:
            message: Knowledge Bank created. Generating positions from provided template.
            task_id: 130
    '429':
      description: Too many requests have been sent to the server over a given time period. Please contact Luminance's support team.
    '403':
      description: Forbidden - the authenticated user does not have sufficient permissions to perform this action
    '500':
      description: Internal server error
    '405':
      description: Method not allowed (calling api with wrong method)
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://moniker.app.luminance.com/auth/oauth2/token
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Access token from the OAuth2 client credentials flow. See the Authentication section above for how to obtain a token (curl to your instance token endpoint); then paste the access_token here.

        '
x-refined-from:
- luminance-api-v1-3-openapi-original.yml
- luminance-api-v1-4-openapi-original.yml
- luminance-public-api-v2-openapi-original.yml
- luminance-tasks-api-openapi.yml