Fieldwire · Capability

Fieldwire Tasks API — Bubbles

Fieldwire task bubbles — comments, photos, video, links, attachments associated with a task.

Fieldwire Tasks API — Bubbles is a Naftiko capability published by Fieldwire, one of 16 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the GET and POST methods rooted at /v1/projects/{…}/tasks/{…}/bubbles.

The capability includes 1 read-only operation and 1 state-changing operation. Lead operation: List bubbles (comments, photos, video, links, attachments) on a Fieldwire task. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Fieldwire, Tasks, Bubbles, and Construction.

Run with Naftiko FieldwireTasksBubblesConstruction

What You Can Do

GET
Getbubblesintask
/v1/projects/{project_id}/tasks/{task_id}/bubbles
POST
Createbubbleintask
/v1/projects/{project_id}/tasks/{task_id}/bubbles

MCP Tools

fieldwire-list-task-bubbles

List bubbles (comments, photos, video, links, attachments) on a Fieldwire task.

read-only idempotent
fieldwire-create-task-bubble

Add a bubble (comment, photo, video, link, or attachment) to a Fieldwire task.

Capability Spec

tasks-bubbles.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Fieldwire Tasks API — Bubbles
  description: Fieldwire task bubbles — comments, photos, video, links, attachments associated with a task.
  tags: [Fieldwire, Tasks, Bubbles, Construction]
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    FIELDWIRE_ACCESS_TOKEN: FIELDWIRE_ACCESS_TOKEN
    FIELDWIRE_REGION_HOST: FIELDWIRE_REGION_HOST
capability:
  consumes:
  - type: http
    namespace: tasks-bubbles
    baseUri: '{{env.FIELDWIRE_REGION_HOST}}'
    description: Fieldwire Task Bubbles business capability.
    resources:
    - name: task-bubbles
      path: /api/v3/projects/{project_id}/tasks/{task_id}/bubbles
      operations:
      - name: getbubblesintask
        method: GET
        description: Get Bubbles In Task
        inputParameters:
        - { name: project_id, in: path, type: integer, required: true }
        - { name: task_id, in: path, type: integer, required: true }
        outputParameters: [{ name: result, type: array, value: $. }]
      - name: createbubbleintask
        method: POST
        description: Create Bubble In Task
        inputParameters:
        - { name: project_id, in: path, type: integer, required: true }
        - { name: task_id, in: path, type: integer, required: true }
        - { name: body, in: body, type: object, required: true }
        outputParameters: [{ name: result, type: object, value: $. }]
    authentication:
      type: bearer
      value: '{{env.FIELDWIRE_ACCESS_TOKEN}}'
      placement: header
  exposes:
  - type: rest
    namespace: tasks-bubbles-rest
    port: 8080
    description: REST adapter for Fieldwire Task Bubbles.
    resources:
    - path: /v1/projects/{project_id}/tasks/{task_id}/bubbles
      name: task-bubbles
      operations:
      - method: GET
        name: getbubblesintask
        call: tasks-bubbles.getbubblesintask
        with: { project_id: rest.path.project_id, task_id: rest.path.task_id }
        outputParameters: [{ type: array, mapping: $. }]
      - method: POST
        name: createbubbleintask
        call: tasks-bubbles.createbubbleintask
        with: { project_id: rest.path.project_id, task_id: rest.path.task_id, body: rest.body }
        outputParameters: [{ type: object, mapping: $. }]
  - type: mcp
    namespace: tasks-bubbles-mcp
    port: 9090
    transport: http
    description: MCP adapter for Fieldwire Task Bubbles.
    tools:
    - name: fieldwire-list-task-bubbles
      description: List bubbles (comments, photos, video, links, attachments) on a Fieldwire task.
      hints: { readOnly: true, destructive: false, idempotent: true }
      call: tasks-bubbles.getbubblesintask
      with: { project_id: tools.project_id, task_id: tools.task_id }
      outputParameters: [{ type: array, mapping: $. }]
    - name: fieldwire-create-task-bubble
      description: Add a bubble (comment, photo, video, link, or attachment) to a Fieldwire task.
      hints: { readOnly: false, destructive: false, idempotent: false }
      call: tasks-bubbles.createbubbleintask
      with: { project_id: tools.project_id, task_id: tools.task_id, body: tools.body }
      outputParameters: [{ type: object, mapping: $. }]