Sample code for 30+ languages & platforms
PowerBuilder

Create Plan

See more Microsoft Tasks and Plans Examples

Demonstrates how to create a new plannerPlan.

See https://docs.microsoft.com/en-us/graph/api/planner-post-plans?view=graph-rest-1.0 for more information.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Http
oleobject loo_JsonToken
oleobject loo_Json
oleobject loo_Resp
string ls_CreatedByApplicationId
string ls_CreatedByUserId
string ls_CreatedDateTime
string ls_Owner
string ls_Title
string ls_Id

li_Success = 0

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

// The Microsoft Planner REST API requires an OAuth2 token with the Group.ReadWrite.All scope.
// Use your previously obtained access token as shown here:
//    Get Microsoft Graph OAuth2 Access Token with Group.ReadWrite.All scope.

loo_JsonToken = create oleobject
li_rc = loo_JsonToken.ConnectToNewObject("Chilkat.JsonObject")

li_Success = loo_JsonToken.LoadFile("qa_data/tokens/msGraphGroup.json")
if li_Success = 0 then
    Write-Debug loo_JsonToken.LastErrorText
    destroy loo_Http
    destroy loo_JsonToken
    return
end if

loo_Http.AuthToken = loo_JsonToken.StringOf("access_token")

// Create a JSON body for the HTTP POST
// Use this online tool to generate the code from sample JSON: 
// Generate Code to Create JSON

// {
//   "owner": "ebf3b108-5234-4e22-b93d-656d7dae5874",
//   "title": "title-value"
// }

loo_Json = create oleobject
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")

loo_Json.UpdateString("owner","ebf3b108-5234-4e22-b93d-656d7dae5874")
loo_Json.UpdateString("title","title-value")

// POST the JSON to https://graph.microsoft.com/v1.0/planner/plans
loo_Resp = create oleobject
li_rc = loo_Resp.ConnectToNewObject("Chilkat.HttpResponse")

li_Success = loo_Http.HttpJson("POST","https://graph.microsoft.com/v1.0/planner/plans",loo_Json,"application/json",loo_Resp)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_JsonToken
    destroy loo_Json
    destroy loo_Resp
    return
end if

loo_Json.Load(loo_Resp.BodyStr)
loo_Json.EmitCompact = 0

if loo_Resp.StatusCode <> 200 then
    Write-Debug loo_Json.Emit()
    Write-Debug "Failed, response status code = " + string(loo_Resp.StatusCode)
    destroy loo_Http
    destroy loo_JsonToken
    destroy loo_Json
    destroy loo_Resp
    return
end if

Write-Debug loo_Json.Emit()

// A sample response:
// (See code for parsing this response below..)

// {
//   "createdBy": {
//     "application": {
//       "id": "95e27074-6c4a-447a-aa24-9d718a0b86fa"
//     },
//     "user": {
//       "id": "ebf3b108-5234-4e22-b93d-656d7dae5874"
//     }
//   },
//   "createdDateTime": "2015-03-30T18:36:49.2407981Z",
//   "owner": "ebf3b108-5234-4e22-b93d-656d7dae5874",
//   "title": "title-value",
//   "id": "xqQg5FS2LkCp935s-FIFm2QAFkHM"
// }

// Use this online tool to generate parsing code from sample JSON: 
// Generate Parsing Code from JSON

ls_CreatedByApplicationId = loo_Json.StringOf("createdBy.application.id")
ls_CreatedByUserId = loo_Json.StringOf("createdBy.user.id")
ls_CreatedDateTime = loo_Json.StringOf("createdDateTime")
ls_Owner = loo_Json.StringOf("owner")
ls_Title = loo_Json.StringOf("title")
ls_Id = loo_Json.StringOf("id")

Write-Debug "Success."


destroy loo_Http
destroy loo_JsonToken
destroy loo_Json
destroy loo_Resp