Sample code for 30+ languages & platforms
Xbase++ Requires Chilkat v11.0.0+

Get Tasks for User

See more Microsoft Tasks and Plans Examples

Demonstrates how to retrieve a list of plannertask objects assigned to a User.

See https://docs.microsoft.com/en-us/graph/api/planneruser-list-tasks?view=graph-rest-1.0 for more information.

Chilkat Xbase++ Downloads

Xbase++
LOCAL nSuccess
LOCAL oHttp
LOCAL oJsonToken
LOCAL cStrResponse
LOCAL oJson
LOCAL i
LOCAL nCount_i
LOCAL cCreatedByUserId
LOCAL cPlanId
LOCAL cBucketId
LOCAL cTitle
LOCAL cOrderHint
LOCAL cAssigneePriority
LOCAL cCreatedDateTime
LOCAL cAssignments_odataType
LOCAL cAssignmentsAssignedByUserId
LOCAL cAssignmentsAssignedDateTime
LOCAL cAssignmentsOrderHint
LOCAL cId
LOCAL oJsonA
LOCAL oJsonUserA
LOCAL cUserId

nSuccess := 0

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

oHttp := CreateObject("Chilkat.Http")

//  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.

oJsonToken := CreateObject("Chilkat.JsonObject")
nSuccess := oJsonToken:LoadFile("qa_data/tokens/msGraphGroup.json")
IF (nSuccess == 0)
    ? oJsonToken:LastErrorText
    oHttp:destroy()
    oJsonToken:destroy()
    RETURN
ENDIF

oHttp:AuthToken := oJsonToken:StringOf("access_token")

//  Send a GET request to https://graph.microsoft.com/v1.0/me/planner/tasks
cStrResponse := oHttp:QuickGetStr("https://graph.microsoft.com/v1.0/me/planner/tasks")
IF (oHttp:LastMethodSuccess == 0)
    ? oHttp:LastErrorText
    oHttp:destroy()
    oJsonToken:destroy()
    RETURN
ENDIF

oJson := CreateObject("Chilkat.JsonObject")
oJson:Load(cStrResponse)
oJson:EmitCompact := 0

IF (oHttp:LastStatus != 200)
    ? oJson:Emit()
    ? "Failed, response status code = " + Str(oHttp:LastStatus)
    oHttp:destroy()
    oJsonToken:destroy()
    oJson:destroy()
    RETURN
ENDIF

? oJson:Emit()

//  Sample output:
//  (See parsing code below..)

//  {
//    "value": [
//      {
//        "createdBy": {
//          "user": {
//            "id": "6463a5ce-2119-4198-9f2a-628761df4a62"
//          }
//        },
//        "planId": "xqQg5FS2LkCp935s-FIFm2QAFkHM",
//        "bucketId": "gcrYAaAkgU2EQUvpkNNXLGQAGTtu",
//        "title": "title-value",
//        "orderHint": "9223370609546166567W",
//        "assigneePriority": "90057581\"",
//        "createdDateTime": "2015-03-25T18:36:49.2407981Z",
//        "assignments": {
//          "fbab97d0-4932-4511-b675-204639209557": {
//            "@odata.type": "#microsoft.graph.plannerAssignment",
//            "assignedBy": {
//              "user": {
//                "id": "1e9955d2-6acd-45bf-86d3-b546fdc795eb"
//              }
//            },
//            "assignedDateTime": "2015-03-25T18:38:21.956Z",
//            "orderHint": "RWk1"
//           }
//        },
//        "id":"01gzSlKkIUSUl6DF_EilrmQAKDhh"
//      }
//    ]
//  }

oJsonA := CreateObject("Chilkat.JsonObject")
oJsonUserA := CreateObject("Chilkat.JsonObject")

i := 0
nCount_i := oJson:SizeOfArray("value")
DO WHILE i < nCount_i
    oJson:I := i
    cCreatedByUserId := oJson:StringOf("value[i].createdBy.user.id")
    cPlanId := oJson:StringOf("value[i].planId")
    cBucketId := oJson:StringOf("value[i].bucketId")
    cTitle := oJson:StringOf("value[i].title")
    cOrderHint := oJson:StringOf("value[i].orderHint")
    cAssigneePriority := oJson:StringOf("value[i].assigneePriority")
    cCreatedDateTime := oJson:StringOf("value[i].createdDateTime")

    oJson:ObjectOf2("value[i].assignments", oJsonA)

    cUserId := oJsonA:NameAt(0)

    oJsonA:ObjectOf2(cUserId, oJsonUserA)

    cAssignments_odataType := oJsonUserA:StringOf('"@odata.type"')
    cAssignmentsAssignedByUserId := oJsonUserA:StringOf("assignedBy.user.id")
    cAssignmentsAssignedDateTime := oJsonUserA:StringOf("assignedDateTime")
    cAssignmentsOrderHint := oJsonUserA:StringOf("orderHint")

    cId := oJson:StringOf("value[i].id")
    i := i + 1
ENDDO

? "Success."

oHttp:destroy()
oJsonToken:destroy()
oJson:destroy()
oJsonA:destroy()
oJsonUserA:destroy()