Microsoft Planner · Example Payload

Microsoft Planner Updatebucket Example

CollaborationMicrosoft 365ProductivityProject ManagementTask Management

Microsoft Planner Updatebucket 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": "updateBucket",
  "method": "PATCH",
  "path": "/planner/buckets/{bucket-id}",
  "summary": "Microsoft Planner Update a Bucket",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "UpdatebucketRequestExample",
      "example": {
        "name": "Example Title",
        "orderHint": "example_value"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Updatebucket200Example",
      "example": {
        "@odata.etag": "example_value",
        "id": "abc123",
        "name": "Example Title",
        "planId": "500123",
        "orderHint": "example_value"
      }
    }
  ]
}