Microsoft Planner · Example Payload

Microsoft Planner Createplan Example

CollaborationMicrosoft 365ProductivityProject ManagementTask Management

Microsoft Planner Createplan Example is an example object payload from Microsoft Planner, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "createPlan",
  "method": "POST",
  "path": "/planner/plans",
  "summary": "Microsoft Planner Create a Plan",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "CreateplanRequestExample",
      "example": {
        "title": "Example Title",
        "container": {
          "url": "https://www.example.com"
        }
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "name": "Createplan201Example",
      "example": {
        "@odata.etag": "example_value",
        "id": "abc123",
        "title": "Example Title",
        "container": {
          "containerId": "500123",
          "type": "group",
          "url": "https://www.example.com"
        },
        "owner": "example_value",
        "createdBy": {},
        "createdDateTime": "2026-01-15T10:30:00Z"
      }
    }
  ]
}