Docusign · Capability

DocuSign Rooms API - v2 — TaskLists

DocuSign Rooms API - v2 — TaskLists. 3 operations. Lead operation: Docusign Gets task lists for a room.. Self-contained Naftiko capability covering one Docusign business surface.

Run with Naftiko DocusignTaskLists

What You Can Do

GET
Tasklistsgettasklists — Docusign Gets task lists for a room.
/v1/v2/accounts/{accountid}/rooms/{roomid}/task-lists
POST
Tasklistscreatetasklist — Docusign Applies a task list to a room.
/v1/v2/accounts/{accountid}/rooms/{roomid}/task-lists
DELETE
Tasklistsdeletetasklist — Docusign Deletes a task list from a room.
/v1/v2/accounts/{accountid}/task-lists/{tasklistid}

MCP Tools

docusign-gets-task-lists-room

Docusign Gets task lists for a room.

read-only idempotent
docusign-applies-task-list-room

Docusign Applies a task list to a room.

read-only
docusign-deletes-task-list-room

Docusign Deletes a task list from a room.

idempotent

Capability Spec

rooms-tasklists.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: DocuSign Rooms API - v2 — TaskLists
  description: 'DocuSign Rooms API - v2 — TaskLists. 3 operations. Lead operation: Docusign Gets task lists for a room.. Self-contained
    Naftiko capability covering one Docusign business surface.'
  tags:
  - Docusign
  - TaskLists
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DOCUSIGN_API_KEY: DOCUSIGN_API_KEY
capability:
  consumes:
  - type: http
    namespace: rooms-tasklists
    baseUri: https://rooms.docusign.com/restapi
    description: DocuSign Rooms API - v2 — TaskLists business capability. Self-contained, no shared references.
    resources:
    - name: v2-accounts-accountId-rooms-roomId-task_lists
      path: /v2/accounts/{accountId}/rooms/{roomId}/task_lists
      operations:
      - name: tasklistsgettasklists
        method: GET
        description: Docusign Gets task lists for a room.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: roomId
          in: path
          type: integer
          description: The ID of the room.
          required: true
        - name: accountId
          in: path
          type: string
          description: The globally unique identifier (GUID) for the account.
          required: true
      - name: tasklistscreatetasklist
        method: POST
        description: Docusign Applies a task list to a room.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: roomId
          in: path
          type: integer
          description: The ID of the room.
          required: true
        - name: accountId
          in: path
          type: string
          description: The globally unique identifier (GUID) for the account.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v2-accounts-accountId-task_lists-taskListId
      path: /v2/accounts/{accountId}/task_lists/{taskListId}
      operations:
      - name: tasklistsdeletetasklist
        method: DELETE
        description: Docusign Deletes a task list from a room.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: taskListId
          in: path
          type: integer
          description: The ID of the task list.
          required: true
        - name: accountId
          in: path
          type: string
          description: The globally unique identifier (GUID) for the account.
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.DOCUSIGN_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: rooms-tasklists-rest
    port: 8080
    description: REST adapter for DocuSign Rooms API - v2 — TaskLists. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v2/accounts/{accountid}/rooms/{roomid}/task-lists
      name: v2-accounts-accountid-rooms-roomid-task-lists
      description: REST surface for v2-accounts-accountId-rooms-roomId-task_lists.
      operations:
      - method: GET
        name: tasklistsgettasklists
        description: Docusign Gets task lists for a room.
        call: rooms-tasklists.tasklistsgettasklists
        with:
          roomId: rest.roomId
          accountId: rest.accountId
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: tasklistscreatetasklist
        description: Docusign Applies a task list to a room.
        call: rooms-tasklists.tasklistscreatetasklist
        with:
          roomId: rest.roomId
          accountId: rest.accountId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/accounts/{accountid}/task-lists/{tasklistid}
      name: v2-accounts-accountid-task-lists-tasklistid
      description: REST surface for v2-accounts-accountId-task_lists-taskListId.
      operations:
      - method: DELETE
        name: tasklistsdeletetasklist
        description: Docusign Deletes a task list from a room.
        call: rooms-tasklists.tasklistsdeletetasklist
        with:
          taskListId: rest.taskListId
          accountId: rest.accountId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rooms-tasklists-mcp
    port: 9090
    transport: http
    description: MCP adapter for DocuSign Rooms API - v2 — TaskLists. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: docusign-gets-task-lists-room
      description: Docusign Gets task lists for a room.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rooms-tasklists.tasklistsgettasklists
      with:
        roomId: tools.roomId
        accountId: tools.accountId
      outputParameters:
      - type: object
        mapping: $.
    - name: docusign-applies-task-list-room
      description: Docusign Applies a task list to a room.
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: rooms-tasklists.tasklistscreatetasklist
      with:
        roomId: tools.roomId
        accountId: tools.accountId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: docusign-deletes-task-list-room
      description: Docusign Deletes a task list from a room.
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: rooms-tasklists.tasklistsdeletetasklist
      with:
        taskListId: tools.taskListId
        accountId: tools.accountId
      outputParameters:
      - type: object
        mapping: $.