Microsoft Planner · Example Payload

Microsoft Planner Createbucket Example

CollaborationMicrosoft 365ProductivityProject ManagementTask Management

Microsoft Planner Createbucket 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": "createBucket",
  "method": "POST",
  "path": "/planner/buckets",
  "summary": "Microsoft Planner Create a Bucket",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "CreatebucketRequestExample",
      "example": {
        "name": "Example Title",
        "planId": "500123",
        "orderHint": "example_value"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "name": "Createbucket201Example",
      "example": {
        "@odata.etag": "example_value",
        "id": "abc123",
        "name": "Example Title",
        "planId": "500123",
        "orderHint": "example_value"
      }
    }
  ]
}