Docusign · Capability

DocuSign REST API — UserProfiles

DocuSign REST API — UserProfiles. 2 operations. Lead operation: Docusign Retrieves the user profile for a specified user.. Self-contained Naftiko capability covering one Docusign business surface.

Run with Naftiko DocusignUserProfiles

What You Can Do

GET
Userprofilegetprofile — Docusign Retrieves the user profile for a specified user.
/v1/v2/accounts/{accountid}/users/{userid}/profile
PUT
Userprofileputprofile — Docusign Updates the user profile information for the specified user.
/v1/v2/accounts/{accountid}/users/{userid}/profile

MCP Tools

docusign-retrieves-user-profile-specified

Docusign Retrieves the user profile for a specified user.

read-only idempotent
docusign-updates-user-profile-information

Docusign Updates the user profile information for the specified user.

idempotent

Capability Spec

docusign-userprofiles.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: DocuSign REST API — UserProfiles
  description: 'DocuSign REST API — UserProfiles. 2 operations. Lead operation: Docusign Retrieves the user profile for a
    specified user.. Self-contained Naftiko capability covering one Docusign business surface.'
  tags:
  - Docusign
  - UserProfiles
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DOCUSIGN_API_KEY: DOCUSIGN_API_KEY
capability:
  consumes:
  - type: http
    namespace: docusign-userprofiles
    baseUri: https://www.docusign.net/restapi
    description: DocuSign REST API — UserProfiles business capability. Self-contained, no shared references.
    resources:
    - name: v2-accounts-accountId-users-userId-profile
      path: /v2/accounts/{accountId}/users/{userId}/profile
      operations:
      - name: userprofilegetprofile
        method: GET
        description: Docusign Retrieves the user profile for a specified 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: userId
          in: path
          type: string
          description: 'The user ID of the user being accessed. Generally this is the user ID of the authenticated user, but
            if the authenticated user is an Admin on the account, this '
          required: true
      - name: userprofileputprofile
        method: PUT
        description: Docusign Updates the user profile information for the specified 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: userId
          in: path
          type: string
          description: 'The user ID of the user being accessed. Generally this is the user ID of the authenticated user, but
            if the authenticated user is an Admin on the account, this '
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
  exposes:
  - type: rest
    namespace: docusign-userprofiles-rest
    port: 8080
    description: REST adapter for DocuSign REST API — UserProfiles. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v2/accounts/{accountid}/users/{userid}/profile
      name: v2-accounts-accountid-users-userid-profile
      description: REST surface for v2-accounts-accountId-users-userId-profile.
      operations:
      - method: GET
        name: userprofilegetprofile
        description: Docusign Retrieves the user profile for a specified user.
        call: docusign-userprofiles.userprofilegetprofile
        with:
          accountId: rest.accountId
          userId: rest.userId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: userprofileputprofile
        description: Docusign Updates the user profile information for the specified user.
        call: docusign-userprofiles.userprofileputprofile
        with:
          accountId: rest.accountId
          userId: rest.userId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: docusign-userprofiles-mcp
    port: 9090
    transport: http
    description: MCP adapter for DocuSign REST API — UserProfiles. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: docusign-retrieves-user-profile-specified
      description: Docusign Retrieves the user profile for a specified user.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: docusign-userprofiles.userprofilegetprofile
      with:
        accountId: tools.accountId
        userId: tools.userId
      outputParameters:
      - type: object
        mapping: $.
    - name: docusign-updates-user-profile-information
      description: Docusign Updates the user profile information for the specified user.
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: docusign-userprofiles.userprofileputprofile
      with:
        accountId: tools.accountId
        userId: tools.userId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.