Microsoft Planner · Example Payload

Microsoft Planner Updateplan Example

CollaborationMicrosoft 365ProductivityProject ManagementTask Management

Microsoft Planner Updateplan 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": "updatePlan",
  "method": "PATCH",
  "path": "/planner/plans/{plan-id}",
  "summary": "Microsoft Planner Update a Plan",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "UpdateplanRequestExample",
      "example": {
        "title": "Example Title"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Updateplan200Example",
      "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"
      }
    }
  ]
}