Microsoft Planner · Arazzo Workflow

Microsoft Planner Add a Bucket and Task to an Existing Plan

Version 1.0.0

Confirm a plan exists, create a new bucket in it, then add a task to that bucket.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub CollaborationMicrosoft-365ProductivityProject ManagementTask ManagementArazzoWorkflows

Provider

microsoft-planner

Workflows

add-bucket-task-to-plan
Add a new bucket and a task to an existing plan.
Chains getPlan, createBucket, and createTask, validating the plan and then carrying its id into the bucket and the bucket id into the task.
3 steps inputs: bucketName, bucketOrderHint, planId, taskTitle outputs: bucketId, planId, taskId
1
getPlan
Read the target plan to confirm it exists before adding a bucket and task.
2
createBucket
Create a new bucket inside the confirmed plan. Planner returns 201 with the created bucket id.
3
createTask
Create a task in the plan and place it into the new bucket. Planner returns 201 with the created task id.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Microsoft Planner Add a Bucket and Task to an Existing Plan
  summary: Confirm a plan exists, create a new bucket in it, then add a task to that bucket.
  description: >-
    Extends an existing plan rather than creating a new one. The flow reads the
    target plan to confirm it exists, creates a fresh plannerBucket inside it, and
    then creates a plannerTask placed into that new bucket. The plan id flows into
    the bucket and the plan and bucket ids flow into the task. Every request is
    spelled out inline so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-900.30
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-900.30
      capability_name: Project Management
      spec: microsoft-planner-tasks-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: bucketsApi
  url: ../openapi/microsoft-planner-buckets-api-openapi.yml
  type: openapi
- name: plansApi
  url: ../openapi/microsoft-planner-plans-api-openapi.yml
  type: openapi
- name: tasksApi
  url: ../openapi/microsoft-planner-tasks-api-openapi.yml
  type: openapi
workflows:
- workflowId: add-bucket-task-to-plan
  summary: Add a new bucket and a task to an existing plan.
  description: >-
    Chains getPlan, createBucket, and createTask, validating the plan and then
    carrying its id into the bucket and the bucket id into the task.
  inputs:
    type: object
    required:
    - planId
    - bucketName
    - taskTitle
    properties:
      planId:
        type: string
        description: The id of the existing plan to extend.
      bucketName:
        type: string
        description: Name for the new bucket.
      bucketOrderHint:
        type: string
        description: Optional order hint used to position the bucket.
      taskTitle:
        type: string
        description: Title for the task created inside the new bucket.
  steps:
  - stepId: getPlan
    description: >-
      Read the target plan to confirm it exists before adding a bucket and task.
    operationId: getPlan
    parameters:
    - name: plan-id
      in: path
      value: $inputs.planId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      planTitle: $response.body#/title
  - stepId: createBucket
    description: >-
      Create a new bucket inside the confirmed plan. Planner returns 201 with the
      created bucket id.
    operationId: createBucket
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.bucketName
        planId: $inputs.planId
        orderHint: $inputs.bucketOrderHint
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      bucketId: $response.body#/id
  - stepId: createTask
    description: >-
      Create a task in the plan and place it into the new bucket. Planner returns
      201 with the created task id.
    operationId: createTask
    requestBody:
      contentType: application/json
      payload:
        planId: $inputs.planId
        bucketId: $steps.createBucket.outputs.bucketId
        title: $inputs.taskTitle
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      taskId: $response.body#/id
  outputs:
    planId: $inputs.planId
    bucketId: $steps.createBucket.outputs.bucketId
    taskId: $steps.createTask.outputs.taskId

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/microsoft-planner-add-bucket-task-to-plan-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.