Box · Capability

Box Platform API — Sign Templates

Box Platform API — Sign Templates. 2 operations. Lead operation: List Box Sign templates. Self-contained Naftiko capability covering one Box business surface.

Run with Naftiko BoxSign Templates

What You Can Do

GET
Getsigntemplates — List Box Sign templates
/v1/sign-templates
GET
Getsigntemplatesid — Get Box Sign template by ID
/v1/sign-templates/{template-id}

MCP Tools

list-box-sign-templates

List Box Sign templates

read-only idempotent
get-box-sign-template-id

Get Box Sign template by ID

read-only idempotent

Capability Spec

box-sign-templates.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Box Platform API — Sign Templates
  description: 'Box Platform API — Sign Templates. 2 operations. Lead operation: List Box Sign templates. Self-contained Naftiko
    capability covering one Box business surface.'
  tags:
  - Box
  - Sign Templates
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BOX_API_KEY: BOX_API_KEY
capability:
  consumes:
  - type: http
    namespace: box-sign-templates
    baseUri: https://api.box.com/2.0
    description: Box Platform API — Sign Templates business capability. Self-contained, no shared references.
    resources:
    - name: sign_templates
      path: /sign_templates
      operations:
      - name: getsigntemplates
        method: GET
        description: List Box Sign templates
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: marker
          in: query
          type: string
          description: Defines the position marker at which to begin returning results. This is
        - name: limit
          in: query
          type: integer
          description: The maximum number of items to return per page.
    - name: sign_templates-template_id
      path: /sign_templates/{template_id}
      operations:
      - name: getsigntemplatesid
        method: GET
        description: Get Box Sign template by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: template_id
          in: path
          type: string
          description: The ID of a Box Sign template.
          required: true
    authentication:
      type: bearer
      token: '{{env.BOX_API_KEY}}'
  exposes:
  - type: rest
    namespace: box-sign-templates-rest
    port: 8080
    description: REST adapter for Box Platform API — Sign Templates. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/sign-templates
      name: sign-templates
      description: REST surface for sign_templates.
      operations:
      - method: GET
        name: getsigntemplates
        description: List Box Sign templates
        call: box-sign-templates.getsigntemplates
        with:
          marker: rest.marker
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/sign-templates/{template-id}
      name: sign-templates-template-id
      description: REST surface for sign_templates-template_id.
      operations:
      - method: GET
        name: getsigntemplatesid
        description: Get Box Sign template by ID
        call: box-sign-templates.getsigntemplatesid
        with:
          template_id: rest.template_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: box-sign-templates-mcp
    port: 9090
    transport: http
    description: MCP adapter for Box Platform API — Sign Templates. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-box-sign-templates
      description: List Box Sign templates
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: box-sign-templates.getsigntemplates
      with:
        marker: tools.marker
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: get-box-sign-template-id
      description: Get Box Sign template by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: box-sign-templates.getsigntemplatesid
      with:
        template_id: tools.template_id
      outputParameters:
      - type: object
        mapping: $.