Docusign · Capability

DocuSign REST API — PowerForms

DocuSign REST API — PowerForms. 7 operations. Lead operation: Docusign Returns the list of PowerForms available to the user.. Self-contained Naftiko capability covering one Docusign business surface.

Run with Naftiko DocusignPowerForms

What You Can Do

GET
Powerformsgetpowerformslist — Docusign Returns the list of PowerForms available to the user.
/v1/v2/accounts/{accountid}/powerforms
POST
Powerformspostpowerform — Docusign Creates a new PowerForm.
/v1/v2/accounts/{accountid}/powerforms
DELETE
Powerformsdeletepowerformslist — Docusign Deletes one or more PowerForms
/v1/v2/accounts/{accountid}/powerforms
GET
Powerformsgetpowerformssenders — Docusign Returns the list of PowerForms available to the user.
/v1/v2/accounts/{accountid}/powerforms/senders
GET
Powerformsgetpowerform — Docusign Returns a single PowerForm.
/v1/v2/accounts/{accountid}/powerforms/{powerformid}
PUT
Powerformsputpowerform — Docusign Creates a new PowerForm.
/v1/v2/accounts/{accountid}/powerforms/{powerformid}
DELETE
Powerformsdeletepowerform — Docusign Delete a PowerForm.
/v1/v2/accounts/{accountid}/powerforms/{powerformid}

MCP Tools

docusign-returns-list-powerforms-available

Docusign Returns the list of PowerForms available to the user.

read-only idempotent
docusign-creates-new-powerform

Docusign Creates a new PowerForm.

docusign-deletes-one-more-powerforms

Docusign Deletes one or more PowerForms

idempotent
docusign-returns-list-powerforms-available-2

Docusign Returns the list of PowerForms available to the user.

read-only idempotent
docusign-returns-single-powerform

Docusign Returns a single PowerForm.

read-only idempotent
docusign-creates-new-powerform-2

Docusign Creates a new PowerForm.

idempotent
docusign-delete-powerform

Docusign Delete a PowerForm.

idempotent

Capability Spec

docusign-powerforms.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: DocuSign REST API — PowerForms
  description: 'DocuSign REST API — PowerForms. 7 operations. Lead operation: Docusign Returns the list of PowerForms available
    to the user.. Self-contained Naftiko capability covering one Docusign business surface.'
  tags:
  - Docusign
  - PowerForms
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DOCUSIGN_API_KEY: DOCUSIGN_API_KEY
capability:
  consumes:
  - type: http
    namespace: docusign-powerforms
    baseUri: https://www.docusign.net/restapi
    description: DocuSign REST API — PowerForms business capability. Self-contained, no shared references.
    resources:
    - name: v2-accounts-accountId-powerforms
      path: /v2/accounts/{accountId}/powerforms
      operations:
      - name: powerformsgetpowerformslist
        method: GET
        description: Docusign Returns the list of PowerForms available to the user.
        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: from_date
          in: query
          type: string
          description: Start of the search date range. Only returns templates created on or after this date/time. If no value
            is specified, there is no limit on the earliest date crea
        - name: order
          in: query
          type: string
          description: 'An optional value that sets the direction order used to sort the item list. '
        - name: order_by
          in: query
          type: string
          description: 'An optional value that sets the file attribute used to sort the item list. '
        - name: to_date
          in: query
          type: string
          description: End of the search date range. Only returns templates created up to this date/time. If no value is provided,
            this defaults to the current date.
      - name: powerformspostpowerform
        method: POST
        description: Docusign Creates a new PowerForm.
        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: powerformsdeletepowerformslist
        method: DELETE
        description: Docusign Deletes one or more PowerForms
        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-powerforms-senders
      path: /v2/accounts/{accountId}/powerforms/senders
      operations:
      - name: powerformsgetpowerformssenders
        method: GET
        description: Docusign Returns the list of PowerForms available to the user.
        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: start_position
          in: query
          type: string
          description: The position within the total result set from which to start returning values. The value **thumbnail**
            may be used to return the page image.
    - name: v2-accounts-accountId-powerforms-powerFormId
      path: /v2/accounts/{accountId}/powerforms/{powerFormId}
      operations:
      - name: powerformsgetpowerform
        method: GET
        description: Docusign Returns a single PowerForm.
        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: powerFormId
          in: path
          type: string
          required: true
      - name: powerformsputpowerform
        method: PUT
        description: Docusign Creates a new PowerForm.
        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: powerFormId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: powerformsdeletepowerform
        method: DELETE
        description: Docusign Delete a PowerForm.
        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: powerFormId
          in: path
          type: string
          required: true
  exposes:
  - type: rest
    namespace: docusign-powerforms-rest
    port: 8080
    description: REST adapter for DocuSign REST API — PowerForms. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v2/accounts/{accountid}/powerforms
      name: v2-accounts-accountid-powerforms
      description: REST surface for v2-accounts-accountId-powerforms.
      operations:
      - method: GET
        name: powerformsgetpowerformslist
        description: Docusign Returns the list of PowerForms available to the user.
        call: docusign-powerforms.powerformsgetpowerformslist
        with:
          accountId: rest.accountId
          from_date: rest.from_date
          order: rest.order
          order_by: rest.order_by
          to_date: rest.to_date
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: powerformspostpowerform
        description: Docusign Creates a new PowerForm.
        call: docusign-powerforms.powerformspostpowerform
        with:
          accountId: rest.accountId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: powerformsdeletepowerformslist
        description: Docusign Deletes one or more PowerForms
        call: docusign-powerforms.powerformsdeletepowerformslist
        with:
          accountId: rest.accountId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/accounts/{accountid}/powerforms/senders
      name: v2-accounts-accountid-powerforms-senders
      description: REST surface for v2-accounts-accountId-powerforms-senders.
      operations:
      - method: GET
        name: powerformsgetpowerformssenders
        description: Docusign Returns the list of PowerForms available to the user.
        call: docusign-powerforms.powerformsgetpowerformssenders
        with:
          accountId: rest.accountId
          start_position: rest.start_position
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/accounts/{accountid}/powerforms/{powerformid}
      name: v2-accounts-accountid-powerforms-powerformid
      description: REST surface for v2-accounts-accountId-powerforms-powerFormId.
      operations:
      - method: GET
        name: powerformsgetpowerform
        description: Docusign Returns a single PowerForm.
        call: docusign-powerforms.powerformsgetpowerform
        with:
          accountId: rest.accountId
          powerFormId: rest.powerFormId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: powerformsputpowerform
        description: Docusign Creates a new PowerForm.
        call: docusign-powerforms.powerformsputpowerform
        with:
          accountId: rest.accountId
          powerFormId: rest.powerFormId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: powerformsdeletepowerform
        description: Docusign Delete a PowerForm.
        call: docusign-powerforms.powerformsdeletepowerform
        with:
          accountId: rest.accountId
          powerFormId: rest.powerFormId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: docusign-powerforms-mcp
    port: 9090
    transport: http
    description: MCP adapter for DocuSign REST API — PowerForms. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: docusign-returns-list-powerforms-available
      description: Docusign Returns the list of PowerForms available to the user.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: docusign-powerforms.powerformsgetpowerformslist
      with:
        accountId: tools.accountId
        from_date: tools.from_date
        order: tools.order
        order_by: tools.order_by
        to_date: tools.to_date
      outputParameters:
      - type: object
        mapping: $.
    - name: docusign-creates-new-powerform
      description: Docusign Creates a new PowerForm.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: docusign-powerforms.powerformspostpowerform
      with:
        accountId: tools.accountId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: docusign-deletes-one-more-powerforms
      description: Docusign Deletes one or more PowerForms
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: docusign-powerforms.powerformsdeletepowerformslist
      with:
        accountId: tools.accountId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: docusign-returns-list-powerforms-available-2
      description: Docusign Returns the list of PowerForms available to the user.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: docusign-powerforms.powerformsgetpowerformssenders
      with:
        accountId: tools.accountId
        start_position: tools.start_position
      outputParameters:
      - type: object
        mapping: $.
    - name: docusign-returns-single-powerform
      description: Docusign Returns a single PowerForm.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: docusign-powerforms.powerformsgetpowerform
      with:
        accountId: tools.accountId
        powerFormId: tools.powerFormId
      outputParameters:
      - type: object
        mapping: $.
    - name: docusign-creates-new-powerform-2
      description: Docusign Creates a new PowerForm.
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: docusign-powerforms.powerformsputpowerform
      with:
        accountId: tools.accountId
        powerFormId: tools.powerFormId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: docusign-delete-powerform
      description: Docusign Delete a PowerForm.
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: docusign-powerforms.powerformsdeletepowerform
      with:
        accountId: tools.accountId
        powerFormId: tools.powerFormId
      outputParameters:
      - type: object
        mapping: $.