Docusign · Capability

DocuSign REST API — CustomTabs

DocuSign REST API — CustomTabs. 5 operations. Lead operation: Docusign Gets a list of all account tabs.. Self-contained Naftiko capability covering one Docusign business surface.

Run with Naftiko DocusignCustomTabs

What You Can Do

GET
Tabsgettabdefinitions — Docusign Gets a list of all account tabs.
/v1/v2/accounts/{accountid}/tab-definitions
POST
Tabsposttabdefinitions — Docusign Creates a custom tab.
/v1/v2/accounts/{accountid}/tab-definitions
GET
Tabgetcustomtab — Docusign Gets custom tab information.
/v1/v2/accounts/{accountid}/tab-definitions/{customtabid}
PUT
Tabputcustomtab — Docusign Updates custom tab information.
/v1/v2/accounts/{accountid}/tab-definitions/{customtabid}
DELETE
Tabdeletecustomtab — Docusign Deletes custom tab information.
/v1/v2/accounts/{accountid}/tab-definitions/{customtabid}

MCP Tools

docusign-gets-list-all-account

Docusign Gets a list of all account tabs.

read-only idempotent
docusign-creates-custom-tab

Docusign Creates a custom tab.

docusign-gets-custom-tab-information

Docusign Gets custom tab information.

read-only idempotent
docusign-updates-custom-tab-information

Docusign Updates custom tab information.

idempotent
docusign-deletes-custom-tab-information

Docusign Deletes custom tab information.

idempotent

Capability Spec

docusign-customtabs.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: DocuSign REST API — CustomTabs
  description: 'DocuSign REST API — CustomTabs. 5 operations. Lead operation: Docusign Gets a list of all account tabs.. Self-contained
    Naftiko capability covering one Docusign business surface.'
  tags:
  - Docusign
  - CustomTabs
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DOCUSIGN_API_KEY: DOCUSIGN_API_KEY
capability:
  consumes:
  - type: http
    namespace: docusign-customtabs
    baseUri: https://www.docusign.net/restapi
    description: DocuSign REST API — CustomTabs business capability. Self-contained, no shared references.
    resources:
    - name: v2-accounts-accountId-tab_definitions
      path: /v2/accounts/{accountId}/tab_definitions
      operations:
      - name: tabsgettabdefinitions
        method: GET
        description: Docusign Gets a list of all account tabs.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          description: The external account number (int) or account id GUID.
          required: true
        - name: custom_tab_only
          in: query
          type: string
          description: When set to **true**, only custom tabs are returned in the response.
      - name: tabsposttabdefinitions
        method: POST
        description: Docusign Creates a custom tab.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          description: The external account number (int) or account id GUID.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v2-accounts-accountId-tab_definitions-customTabId
      path: /v2/accounts/{accountId}/tab_definitions/{customTabId}
      operations:
      - name: tabgetcustomtab
        method: GET
        description: Docusign Gets custom tab information.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          description: The external account number (int) or account id GUID.
          required: true
        - name: customTabId
          in: path
          type: string
          required: true
      - name: tabputcustomtab
        method: PUT
        description: Docusign Updates custom tab information.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          description: The external account number (int) or account id GUID.
          required: true
        - name: customTabId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: tabdeletecustomtab
        method: DELETE
        description: Docusign Deletes custom tab information.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          description: The external account number (int) or account id GUID.
          required: true
        - name: customTabId
          in: path
          type: string
          required: true
  exposes:
  - type: rest
    namespace: docusign-customtabs-rest
    port: 8080
    description: REST adapter for DocuSign REST API — CustomTabs. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v2/accounts/{accountid}/tab-definitions
      name: v2-accounts-accountid-tab-definitions
      description: REST surface for v2-accounts-accountId-tab_definitions.
      operations:
      - method: GET
        name: tabsgettabdefinitions
        description: Docusign Gets a list of all account tabs.
        call: docusign-customtabs.tabsgettabdefinitions
        with:
          accountId: rest.accountId
          custom_tab_only: rest.custom_tab_only
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: tabsposttabdefinitions
        description: Docusign Creates a custom tab.
        call: docusign-customtabs.tabsposttabdefinitions
        with:
          accountId: rest.accountId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/accounts/{accountid}/tab-definitions/{customtabid}
      name: v2-accounts-accountid-tab-definitions-customtabid
      description: REST surface for v2-accounts-accountId-tab_definitions-customTabId.
      operations:
      - method: GET
        name: tabgetcustomtab
        description: Docusign Gets custom tab information.
        call: docusign-customtabs.tabgetcustomtab
        with:
          accountId: rest.accountId
          customTabId: rest.customTabId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: tabputcustomtab
        description: Docusign Updates custom tab information.
        call: docusign-customtabs.tabputcustomtab
        with:
          accountId: rest.accountId
          customTabId: rest.customTabId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: tabdeletecustomtab
        description: Docusign Deletes custom tab information.
        call: docusign-customtabs.tabdeletecustomtab
        with:
          accountId: rest.accountId
          customTabId: rest.customTabId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: docusign-customtabs-mcp
    port: 9090
    transport: http
    description: MCP adapter for DocuSign REST API — CustomTabs. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: docusign-gets-list-all-account
      description: Docusign Gets a list of all account tabs.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: docusign-customtabs.tabsgettabdefinitions
      with:
        accountId: tools.accountId
        custom_tab_only: tools.custom_tab_only
      outputParameters:
      - type: object
        mapping: $.
    - name: docusign-creates-custom-tab
      description: Docusign Creates a custom tab.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: docusign-customtabs.tabsposttabdefinitions
      with:
        accountId: tools.accountId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: docusign-gets-custom-tab-information
      description: Docusign Gets custom tab information.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: docusign-customtabs.tabgetcustomtab
      with:
        accountId: tools.accountId
        customTabId: tools.customTabId
      outputParameters:
      - type: object
        mapping: $.
    - name: docusign-updates-custom-tab-information
      description: Docusign Updates custom tab information.
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: docusign-customtabs.tabputcustomtab
      with:
        accountId: tools.accountId
        customTabId: tools.customTabId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: docusign-deletes-custom-tab-information
      description: Docusign Deletes custom tab information.
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: docusign-customtabs.tabdeletecustomtab
      with:
        accountId: tools.accountId
        customTabId: tools.customTabId
      outputParameters:
      - type: object
        mapping: $.