Files
box-platform-openapi-agent/skills/tasks/SKILL.md
a2a-platform 197f1bd317 deploy
2026-06-27 01:02:21 +00:00

1.3 KiB

name, description
name description
tasks-routes Handle 5 OpenAPI operation(s) under /tasks for the tasks route group.

tasks API Routes

Handle 5 OpenAPI operation(s) under /tasks for the tasks route group.

Use the generated operation tools to make real API calls. Do not invent API responses. If a tool reports missing setup, return the exact setup field name to the caller. For write, update, or delete operations, state the intended action before calling the tool.

Operations

post_tasks

  • Operation ID: post_tasks
  • Route: POST /tasks
  • Mode: WRITE
  • Summary: Create task
  • Body: JSON request body accepted.

get_tasks_id

  • Operation ID: get_tasks_id
  • Route: GET /tasks/{task_id}
  • Mode: READ
  • Summary: Get task
  • Parameters:
    • task_id in path required

put_tasks_id

  • Operation ID: put_tasks_id
  • Route: PUT /tasks/{task_id}
  • Mode: WRITE
  • Summary: Update task
  • Parameters:
    • task_id in path required
  • Body: JSON request body accepted.

delete_tasks_id

  • Operation ID: delete_tasks_id
  • Route: DELETE /tasks/{task_id}
  • Mode: WRITE
  • Summary: Remove task
  • Parameters:
    • task_id in path required

get_tasks_id_assignments

  • Operation ID: get_tasks_id_assignments
  • Route: GET /tasks/{task_id}/assignments
  • Mode: READ
  • Summary: List task assignments
  • Parameters:
    • task_id in path required