Visual Basic 6.0 Dynamics CRM: Get All Tasks

Back to Index

Returns the subject, description, start date/time,activity ID, and Regarding Object ID for all tasks.

Documentation: https://docs.microsoft.com/en-us/dynamics365/customer-engagement/web-api/task?view=dynamics-ce-odata-9

CURL Command

curl -X GET https://my-dynamics-domain.api.crm.dynamics.com/api/data/v9.0/tasks \
  -H "Accept: application/json" \
  -H "OData-MaxVersion: 4.0"  \
  -H "OData-Version: 4.0" \
  -d "$select=subject,description,actualstart,activityid,_regardingobjectid_value" \
  -d "$orderby=_regardingobjectid_value asc" \
  -H "Authorization: Bearer DYNAMICS_CRM_ACCESS_TOKEN"

Visual Basic 6.0 Example

Dim rest As New ChilkatRest
Dim success As Long

'  URL: https://my-dynamics-domain.api.crm.dynamics.com/api/data/v9.0/tasks
Dim bTls As Long
bTls = 1
Dim port As Long
port = 443
Dim bAutoReconnect As Long
bAutoReconnect = 1
success = rest.Connect("my-dynamics-domain.api.crm.dynamics.com",port,bTls,bAutoReconnect)
If (success <> 1) Then
    Debug.Print "ConnectFailReason: " & rest.ConnectFailReason
    Debug.Print rest.LastErrorText
    Exit Sub
End If

success = rest.AddQueryParam("$select","subject,description,actualstart,activityid,_regardingobjectid_value")
success = rest.AddQueryParam("$orderby","_regardingobjectid_value asc")

success = rest.AddHeader("OData-MaxVersion","4.0")
success = rest.AddHeader("Accept","application/json")
success = rest.AddHeader("OData-Version","4.0")
success = rest.AddHeader("Authorization","Bearer DYNAMICS_CRM_ACCESS_TOKEN")

Dim sbResponseBody As New ChilkatStringBuilder
success = rest.FullRequestNoBodySb("GET","/api/data/v9.0/tasks",sbResponseBody)
If (success <> 1) Then
    Debug.Print rest.LastErrorText
    Exit Sub
End If

Dim respStatusCode As Long
respStatusCode = rest.ResponseStatusCode
If (respStatusCode >= 400) Then
    Debug.Print "Response Status Code = " & respStatusCode
    Debug.Print "Response Header:"
    Debug.Print rest.ResponseHeader
    Debug.Print "Response Body:"
    Debug.Print sbResponseBody.GetAsString()
    Exit Sub
End If

Dim jsonResponse As New ChilkatJsonObject
success = jsonResponse.LoadSb(sbResponseBody)

Dim i As Long
Dim count_i As Long

Dim odataContext As String
odataContext = jsonResponse.StringOf("""@odata.context""")
i = 0
count_i = jsonResponse.SizeOfArray("value")
Do While i < count_i
    jsonResponse.I = i
    Dim odataEtag As String
    odataEtag = jsonResponse.StringOf("value[i].""@odata.etag""")
    Dim subject As String
    subject = jsonResponse.StringOf("value[i].subject")
    Dim description As String
    description = jsonResponse.StringOf("value[i].description")
    Dim actualstart As String
    actualstart = jsonResponse.StringOf("value[i].actualstart")
    Dim activityid As String
    activityid = jsonResponse.StringOf("value[i].activityid")
    Dim v_regardingobjectid_value As String
    v_regardingobjectid_value = jsonResponse.StringOf("value[i]._regardingobjectid_value")
    i = i + 1
Loop

Sample JSON Response Body

{
  "@odata.context": "https://mydomain.api.crm.dynamics.com/api/data/v9.0/$metadata#tasks(subject,description,actualstart,activityid,_regardingobjectid_value)",
  "value": [
    {
      "@odata.etag": "W/\"1818099\"",
      "subject": "Pain admitted by sponsor (sample)",
      "description": "Define and capture critical business issue for contact and organization. Requires access to Reference Stories and Pain Sheets in the Sales Library.",
      "actualstart": null,
      "activityid": "98191f13-b749-e811-a959-000d3a1adfba",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1818102\"",
      "subject": "Sponsor has a buying vision (sample)",
      "description": "Diagnose and create a vision of a company-biased solution. Requires access to Reference Stories and pain Sheets in the Sales Library.",
      "actualstart": null,
      "activityid": "9a191f13-b749-e811-a959-000d3a1adfba",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1818108\"",
      "subject": "Sponsor agrees to explore (sample)",
      "description": "Sponsor agrees to conduct internal selling within the organization",
      "actualstart": null,
      "activityid": "9c191f13-b749-e811-a959-000d3a1adfba",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1818110\"",
      "subject": "Access to power negotiated (sample)",
      "description": "Sponsor conditionally agrees to provide access to power. Capture preliminary power information.",
      "actualstart": null,
      "activityid": "9e191f13-b749-e811-a959-000d3a1adfba",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1818114\"",
      "subject": "Agree to above in Sponsor letter (sample)",
      "description": "Document critical business issue, buying vision and access to power in a letter or e-mail. Generate letter or e-mail using Potential Sponsor template.",
      "actualstart": null,
      "activityid": "a0191f13-b749-e811-a959-000d3a1adfba",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1818117\"",
      "subject": "Proposal Issue, Decision Due (sample)",
      "description": "Provide proposal and attach to Opportunity.",
      "actualstart": null,
      "activityid": "a2191f13-b749-e811-a959-000d3a1adfba",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1818122\"",
      "subject": "Evaluation Plan agreed upon (sample)",
      "description": "Confirm that Power Sponsor agrees to the steps that will lead to a buying decision. Attach revised Evaluation Plan to opportunity, create activities that match up to the Evaluation Plan.",
      "actualstart": null,
      "activityid": "a4191f13-b749-e811-a959-000d3a1adfba",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1818126\"",
      "subject": "Verbal approval received (sample)",
      "description": "Verbal approval received.",
      "actualstart": null,
      "activityid": "a8191f13-b749-e811-a959-000d3a1adfba",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1818127\"",
      "subject": "Evaluation Plan agreed upon (sample)",
      "description": "Confirm that Power Sponsor agrees to the steps that will lead to a buying decision. Attach revised Evaluation Plan to opportunity, create activities that match up to the Evaluation Plan.",
      "actualstart": null,
      "activityid": "aa191f13-b749-e811-a959-000d3a1adfba",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1818129\"",
      "subject": "Evaluation plan underway (sample)",
      "description": "Execute steps in Evaluation Plan and manage go/no go steps. Make sure all legal, technical, and accounting hurdles have been approved. Prepare Value Justification and Success criteria, Generate letter or e-mail using \"Go/No Go\" Completion Step template.",
      "actualstart": null,
      "activityid": "ac191f13-b749-e811-a959-000d3a1adfba",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1818132\"",
      "subject": "Pre-proposal review conducted (sample)",
      "description": "Review proposal draft content with key power players on buying committee, capture attendee list.",
      "actualstart": null,
      "activityid": "ae191f13-b749-e811-a959-000d3a1adfba",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1818135\"",
      "subject": "Asked for business (sample)",
      "description": "Identify and capture remaining issues, if any.",
      "actualstart": null,
      "activityid": "b0191f13-b749-e811-a959-000d3a1adfba",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1818138\"",
      "subject": "Check sales literature for recent price list (sample)",
      "description": "Need to do this asap",
      "actualstart": null,
      "activityid": "b2191f13-b749-e811-a959-000d3a1adfba",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1052639\"",
      "subject": "Follow Up with Brian",
      "description": null,
      "actualstart": "2016-03-08T16:25:10Z",
      "activityid": "35459f53-4ae5-e511-80fe-00155d09ab01",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173697\"",
      "subject": "Email NWT about Printer Delivery",
      "description": "Let Northwind know that this will be taken care of immediately.",
      "actualstart": "2015-11-25T17:10:58Z",
      "activityid": "3d595336-32be-e511-80e3-6c3be5a852b0",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173699\"",
      "subject": "Send Warranty Packet",
      "description": "Mail the warranty packet to Alex.",
      "actualstart": "2015-11-25T17:53:16Z",
      "activityid": "40595336-32be-e511-80e3-6c3be5a852b0",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173701\"",
      "subject": "Contact customer",
      "description": "Reassure Northwind that this issue will be handled quickly. ",
      "actualstart": "2015-11-25T14:52:28Z",
      "activityid": "43595336-32be-e511-80e3-6c3be5a852b0",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173832\"",
      "subject": "Pinpoint which product. ",
      "description": "Contact customer to enquire which product they need the information on. ",
      "actualstart": "2015-11-25T19:26:06Z",
      "activityid": "6ae3b073-fabe-e511-80e1-6c3be5a8a258",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173834\"",
      "subject": "Contact Management",
      "description": "I need to find out which service policy to send in order to complete this.  ",
      "actualstart": "2015-11-25T19:32:28Z",
      "activityid": "6de3b073-fabe-e511-80e1-6c3be5a8a258",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173670\"",
      "subject": "Pain admitted by sponsor",
      "description": "Define and capture critical business issue for contact and organization. Requires access to Reference Stories and Pain Sheets in the Sales Library.",
      "actualstart": null,
      "activityid": "ac81ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173673\"",
      "subject": "Sponsor has a buying vision",
      "description": "Diagnose and create a vision of a company-biased solution. Requires access to Reference Stories and pain Sheets in the Sales Library.",
      "actualstart": null,
      "activityid": "ae81ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173780\"",
      "subject": "Sponsor agrees to explore",
      "description": "Sponsor agrees to conduct internal selling within the organization",
      "actualstart": null,
      "activityid": "b081ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173782\"",
      "subject": "Proposal Issue, Decision Due",
      "description": "Provide proposal and attach to Opportunity.",
      "actualstart": null,
      "activityid": "b681ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173784\"",
      "subject": "Evaluation Plan agreed upon",
      "description": "Confirm that Power Sponsor agrees to the steps that will lead to a buying decision. Attach revised Evaluation Plan to opportunity, create activities that match up to the Evaluation Plan.",
      "actualstart": null,
      "activityid": "b881ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173786\"",
      "subject": "Evaluation Plan proposed",
      "description": "Document steps that will lead to a buying decision based on customer requirements. Generate letter or e-mail using Potential Power Sponsor template.",
      "actualstart": null,
      "activityid": "ba81ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173788\"",
      "subject": "Verbal approval received",
      "description": "Verbal approval received.",
      "actualstart": null,
      "activityid": "bc81ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173681\"",
      "subject": "Evaluation plan underway",
      "description": "Execute steps in Evaluation Plan and manage go/no go steps. Make sure all legal, technical, and accounting hurdles have been approved. Prepare Value Justification and Success criteria, Generate letter or e-mail using \"Go/No Go\" Completion Step template.",
      "actualstart": null,
      "activityid": "c081ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173683\"",
      "subject": "Pre-proposal review conducted",
      "description": "Review proposal draft content with key power players on buying committee, capture attendee list.",
      "actualstart": null,
      "activityid": "c281ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"905058\"",
      "subject": "Check the delivery status",
      "description": "Diagnosed and created a list of issues. Captured preliminary customer and product information. Created follow-up activities. Generated email using the relevant template. Assigned to the relevant team.",
      "actualstart": null,
      "activityid": "ce81ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173707\"",
      "subject": "Schedule an appointment with customer",
      "description": "Schedule an appointment with the customer. Capture preliminary customer and product information. Generate letter or email using the relevant template. Assign to the relevant team.",
      "actualstart": null,
      "activityid": "d081ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173717\"",
      "subject": "Escalate to the delivery team",
      "description": "Schedule an appointment with the customer. Capture preliminary customer and product information. Generate letter or email using the relevant template. Assign to the relevant team.",
      "actualstart": null,
      "activityid": "e681ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": null
    },
    {
      "@odata.etag": "W/\"1173751\"",
      "subject": "Send Products and Pricing for Approval",
      "description": null,
      "actualstart": "2015-05-18T10:42:04Z",
      "activityid": "140effd8-0ffd-e411-80eb-c4346bb5a81c",
      "_regardingobjectid_value": "6634f32e-4be5-e511-80fe-00155d09ab01"
    },
    {
      "@odata.etag": "W/\"1173829\"",
      "subject": "Follow up with Customer",
      "description": null,
      "actualstart": "2017-01-31T23:43:57Z",
      "activityid": "14141e61-fcfc-e411-80eb-c4346bb5a81c",
      "_regardingobjectid_value": "dc495cc4-6fc8-e611-80f9-c4346bacdbf8"
    },
    {
      "@odata.etag": "W/\"1173748\"",
      "subject": "Send Email",
      "description": "Follow up with relevant products",
      "actualstart": "2015-04-08T06:26:58Z",
      "activityid": "1b018697-41de-e411-80e2-c4346bacd1a8",
      "_regardingobjectid_value": "be0e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1173650\"",
      "subject": "Prepare information for meeting with Alex",
      "description": "Pull updated product information for meeting with Alex",
      "actualstart": null,
      "activityid": "ab74da32-95d9-e511-80d6-5065f38bd141",
      "_regardingobjectid_value": "63a0e5b9-88df-e311-b8e5-6c3be5a8b200"
    },
    {
      "@odata.etag": "W/\"1173654\"",
      "subject": "Follow up with Alex Wu re: meeting",
      "description": null,
      "actualstart": null,
      "activityid": "caec77d1-9ad9-e511-80d6-5065f38bd141",
      "_regardingobjectid_value": "63a0e5b9-88df-e311-b8e5-6c3be5a8b200"
    },
    {
      "@odata.etag": "W/\"1173690\"",
      "subject": "Check sales literature for recent price list",
      "description": "Need to review the brochures for the current Ski season.",
      "actualstart": null,
      "activityid": "c681ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": "aaa19cdd-88df-e311-b8e5-6c3be5a8b200"
    },
    {
      "@odata.etag": "W/\"1173723\"",
      "subject": "Email Vincent",
      "description": "Email Vincent about audio opportunity",
      "actualstart": null,
      "activityid": "c5fcd206-e0be-e511-80e1-6c3be5a8a258",
      "_regardingobjectid_value": "bc0e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1166579\"",
      "subject": "Email",
      "description": null,
      "actualstart": null,
      "activityid": "1d018697-41de-e411-80e2-c4346bacd1a8",
      "_regardingobjectid_value": "bc0e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1173892\"",
      "subject": "Review and Update Pricing Model",
      "description": "Review last quarter's pricing model and see if any adjustments need to be made.",
      "actualstart": "2016-01-20T15:46:39Z",
      "activityid": "9fe4d5fa-8cbf-e511-80dd-6c3be5bd3f5c",
      "_regardingobjectid_value": "020e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1173897\"",
      "subject": "Internal Team Touch Base",
      "description": "Meet the team to discuss the deployment schedule and if it is feasible.",
      "actualstart": "2016-01-20T15:49:48Z",
      "activityid": "be58e86e-8dbf-e511-80dd-6c3be5bd3f5c",
      "_regardingobjectid_value": "020e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1173778\"",
      "subject": "Send Product Samples",
      "description": null,
      "actualstart": "2015-04-08T06:32:38Z",
      "activityid": "35ab1160-7edd-e411-80e6-c4346bb5981c",
      "_regardingobjectid_value": "020e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1175317\"",
      "subject": "Get studio dimensions from Alex",
      "description": "Get the walkthrough diagrams from Alex and compare to system configuration charts.",
      "actualstart": "2016-01-18T19:50:11Z",
      "activityid": "df2400ae-1cbe-e511-80dd-6c3be5a8dad0",
      "_regardingobjectid_value": "b80e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1175321\"",
      "subject": "Send proposal to Alex",
      "description": "Send the completed proposal to Alex for his review and signoff.",
      "actualstart": "2016-01-18T19:54:54Z",
      "activityid": "db724d57-1dbe-e511-80dd-6c3be5a8dad0",
      "_regardingobjectid_value": "b80e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1175325\"",
      "subject": "Perform internal review of project with team",
      "description": "Remember to bring floor plans and delivery schedules!!",
      "actualstart": "2016-01-18T19:56:20Z",
      "activityid": "9906a087-1dbe-e511-80dd-6c3be5a8dad0",
      "_regardingobjectid_value": "b80e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1175329\"",
      "subject": "Send project Thank You note",
      "description": "Be sure to include pictures of completed studio!",
      "actualstart": "2016-01-18T20:01:19Z",
      "activityid": "55244739-1ebe-e511-80dd-6c3be5a8dad0",
      "_regardingobjectid_value": "b80e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1173686\"",
      "subject": "Asked for business",
      "description": "Identify and capture remaining issues, if any.",
      "actualstart": null,
      "activityid": "c481ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": "aca19cdd-88df-e311-b8e5-6c3be5a8b200"
    },
    {
      "@odata.etag": "W/\"1173804\"",
      "subject": "Put together proposal for Blue Yonders latest order",
      "description": null,
      "actualstart": "2015-05-01T00:15:08Z",
      "activityid": "e66f0b73-5cef-e411-80f0-c4346bb588c8",
      "_regardingobjectid_value": "aca19cdd-88df-e311-b8e5-6c3be5a8b200"
    },
    {
      "@odata.etag": "W/\"1170950\"",
      "subject": "Cat Francis (Coho) - Follow-up with proposal",
      "description": "Remember to follow-up with Cat to discuss pricing and support.",
      "actualstart": "2015-05-17T04:08:51Z",
      "activityid": "35c5cfbf-0ffc-e411-80ec-c4346bace124",
      "_regardingobjectid_value": "80e6c6de-1bff-e411-80d4-c4346bac4730"
    },
    {
      "@odata.etag": "W/\"1173792\"",
      "subject": "Follow-up with Cathan at Alpine Ski House",
      "description": "They just opened up a new store and we want to ensure they have everything they may need to make it a successful opening/continued operation.",
      "actualstart": "2015-05-17T04:26:16Z",
      "activityid": "575bbd2e-12fc-e411-80ec-c4346bace124",
      "_regardingobjectid_value": "8ce6c6de-1bff-e411-80d4-c4346bac4730"
    },
    {
      "@odata.etag": "W/\"1173808\"",
      "subject": "Catch up with Chris Gallagher",
      "description": null,
      "actualstart": "2015-05-01T00:17:38Z",
      "activityid": "5f0c3ecc-5cef-e411-80f0-c4346bb588c8",
      "_regardingobjectid_value": "a1a2e5b9-88df-e311-b8e5-6c3be5a8b200"
    },
    {
      "@odata.etag": "W/\"1173675\"",
      "subject": "Access to power negotiated",
      "description": "Sponsor conditionally agrees to provide access to power. Capture preliminary power information.",
      "actualstart": null,
      "activityid": "b281ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": "aea19cdd-88df-e311-b8e5-6c3be5a8b200"
    },
    {
      "@odata.etag": "W/\"1173678\"",
      "subject": "Agree to above in Sponsor letter",
      "description": "Document critical business issue, buying vision and access to power in a letter or e-mail. Generate letter or e-mail using Potential Sponsor template.",
      "actualstart": null,
      "activityid": "b481ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": "aea19cdd-88df-e311-b8e5-6c3be5a8b200"
    },
    {
      "@odata.etag": "W/\"1173754\"",
      "subject": "Tailspin Toys - Confirm Computer Order",
      "description": null,
      "actualstart": null,
      "activityid": "53018697-41de-e411-80e2-c4346bacd1a8",
      "_regardingobjectid_value": "d80e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1173822\"",
      "subject": "Call Eva and Introduce Myself",
      "description": null,
      "actualstart": "2015-05-17T21:58:30Z",
      "activityid": "69583134-e2be-e511-80e1-6c3be5a8a258",
      "_regardingobjectid_value": "e20e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1173740\"",
      "subject": "Send Product",
      "description": null,
      "actualstart": null,
      "activityid": "7b018697-41de-e411-80e2-c4346bacd1a8",
      "_regardingobjectid_value": "8e0e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1050399\"",
      "subject": "Follow up with Alex and troubleshoot keyboard connectivity",
      "description": "First confirm the customer is following the correct setup instructions. If the issue remains, send a replacement keyboard",
      "actualstart": "2016-03-15T19:46:44Z",
      "activityid": "bec3a6a4-e6ea-e511-80fe-00155d09ab01",
      "_regardingobjectid_value": "07ed7642-6dc7-e411-80ea-c4346bac094c"
    },
    {
      "@odata.etag": "W/\"1050408\"",
      "subject": "Send list of printers and accessory options",
      "description": "Send over to Alex our list of printers; recommend the X series from A. Datum because of the quality of output.",
      "actualstart": "2017-03-15T07:00:00Z",
      "activityid": "36bfae25-f8ea-e511-80fe-00155d09ab01",
      "_regardingobjectid_value": "628cf01a-aed1-e411-80ef-c4346bac7be8"
    },
    {
      "@odata.etag": "W/\"1175304\"",
      "subject": "Send list of digital cameras",
      "description": "Send over to Alex our list of digital cameras; recommend the X series from A. Datum because of the quality of imagery.",
      "actualstart": "2014-06-14T21:24:47Z",
      "activityid": "fc7b11d5-0bbe-e511-80e3-6c3be5a852b0",
      "_regardingobjectid_value": "628cf01a-aed1-e411-80ef-c4346bac7be8"
    },
    {
      "@odata.etag": "W/\"1175308\"",
      "subject": "Remind me to add anytime upgrade to Northwind Traders",
      "description": null,
      "actualstart": "2014-10-31T23:42:43Z",
      "activityid": "ecfcd206-e0be-e511-80e1-6c3be5a8a258",
      "_regardingobjectid_value": "628cf01a-aed1-e411-80ef-c4346bac7be8"
    },
    {
      "@odata.etag": "W/\"1175312\"",
      "subject": "Set up meeting regarding client budget",
      "description": "Need to confirm customers budget limit",
      "actualstart": "2015-07-09T22:21:33Z",
      "activityid": "effcd206-e0be-e511-80e1-6c3be5a8a258",
      "_regardingobjectid_value": "628cf01a-aed1-e411-80ef-c4346bac7be8"
    },
    {
      "@odata.etag": "W/\"1050406\"",
      "subject": "Remind me to add anytime upgrade to Northwind Traders.",
      "description": null,
      "actualstart": "2014-10-31T23:42:43Z",
      "activityid": "8e5f0aea-6c60-e411-80d4-b4b52f67d59a",
      "_regardingobjectid_value": "628cf01a-aed1-e411-80ef-c4346bac7be8"
    },
    {
      "@odata.etag": "W/\"1173836\"",
      "subject": "Feedback on the product catalog",
      "description": "Defined and captured critical customer requirements for the product catalog. Reviewed the draft content with key players on the committee; recorded attendees. Generated email using the relevant template.",
      "actualstart": null,
      "activityid": "ca81ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": "c49e62a8-90df-e311-9565-a45d36fc5fe8"
    },
    {
      "@odata.etag": "W/\"1173797\"",
      "subject": "Send George our latest catalog of product offerings.",
      "description": "Send the latest 2015 catalog.",
      "actualstart": "2015-05-17T04:39:36Z",
      "activityid": "4e583134-e2be-e511-80e1-6c3be5a8a258",
      "_regardingobjectid_value": "b56264dc-7332-e611-80e5-5065f38b31c1"
    },
    {
      "@odata.etag": "W/\"1173872\"",
      "subject": "Work on proposal",
      "description": "Develop proposal for the opportunity.",
      "actualstart": "2016-01-21T23:13:10Z",
      "activityid": "2e3c6089-94c0-e511-80e1-6c3be5a8a258",
      "_regardingobjectid_value": "640e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1173854\"",
      "subject": "Product related question",
      "description": "Diagnosed and created a list of issues. Captured preliminary customer and product information. Created follow-up activities. Generated email using the relevant template. Assigned to the relevant team.",
      "actualstart": null,
      "activityid": "d881ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": "ca9e62a8-90df-e311-9565-a45d36fc5fe8"
    },
    {
      "@odata.etag": "W/\"1173719\"",
      "subject": "Schedule follow up call with Susan",
      "description": null,
      "actualstart": "2015-05-18T10:33:32Z",
      "activityid": "38bb1ba8-0efd-e411-80eb-c4346bb5a81c",
      "_regardingobjectid_value": "7d64e1a2-541c-e511-80d3-3863bb347ba8"
    },
    {
      "@odata.etag": "W/\"1175330\"",
      "subject": "Discuss required shipment lead times",
      "description": "Create a spreadsheet showing the lead times from the various warehouses to customer regions served by those warehouses.",
      "actualstart": "2016-01-18T20:24:09Z",
      "activityid": "71d2fa6b-21be-e511-80dd-6c3be5a8dad0",
      "_regardingobjectid_value": "750d0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1175331\"",
      "subject": "Send report layout to IT",
      "description": "Send the layout of the new distribution to IT developers for creation in the Delivery Application.",
      "actualstart": "2016-01-18T20:42:17Z",
      "activityid": "e0d6cef0-23be-e511-80dd-6c3be5a8dad0",
      "_regardingobjectid_value": "750d0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1173844\"",
      "subject": "Ask Regional Manager to Call Back",
      "description": "Schedule an appointment with the customer. Capture preliminary customer and product information. Generate letter or email using the relevant template. Assign to the relevant team.",
      "actualstart": null,
      "activityid": "d281ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": "d49e62a8-90df-e311-9565-a45d36fc5fe8"
    },
    {
      "@odata.etag": "W/\"1048624\"",
      "subject": "Customer not happy with the response",
      "description": "Define and capture critical customer requirements. Review the draft content with key players on the committee; capture attendee list. Generate letter or email using the relevant template.",
      "actualstart": null,
      "activityid": "d481ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": "d89e62a8-90df-e311-9565-a45d36fc5fe8"
    },
    {
      "@odata.etag": "W/\"1173703\"",
      "subject": "Review of operating manual",
      "description": "Defined and captured critical customer requirements for the operating manual. Reviewed the draft content with key players on the committee; recorded attendees. Generated email using the relevant template.",
      "actualstart": null,
      "activityid": "c881ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": "e29e62a8-90df-e311-9565-a45d36fc5fe8"
    },
    {
      "@odata.etag": "W/\"1173813\"",
      "subject": "Call Patrick to disuss bulk order",
      "description": null,
      "actualstart": "2015-04-09T13:27:20Z",
      "activityid": "9eaa2fcd-46de-e411-80e6-c4346bb5981c",
      "_regardingobjectid_value": "354fa496-3ff2-e311-9864-a45d36fc5f1c"
    },
    {
      "@odata.etag": "W/\"1173817\"",
      "subject": "Prepare Product Presentation and pricing options",
      "description": null,
      "actualstart": "2015-04-09T13:28:07Z",
      "activityid": "eb8602e9-46de-e411-80e6-c4346bb5981c",
      "_regardingobjectid_value": "354fa496-3ff2-e311-9864-a45d36fc5f1c"
    },
    {
      "@odata.etag": "W/\"1173840\"",
      "subject": "Check with customer and resolve",
      "description": "Diagnosed and created a list of issues. Captured preliminary customer and product information. Created follow-up activities. Generated email using the relevant template. Assigned to the relevant team.",
      "actualstart": null,
      "activityid": "cc81ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": "e89e62a8-90df-e311-9565-a45d36fc5fe8"
    },
    {
      "@odata.etag": "W/\"1173850\"",
      "subject": "Information on the product",
      "description": "Diagnose and create a list of issues. Capture preliminary customer and product information. Create follow-up activities. Generate letter or email using the the relevant template. Assign to the relevant team.",
      "actualstart": null,
      "activityid": "d681ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": "d940d6c6-43cc-e411-80ea-c4346bac094c"
    },
    {
      "@odata.etag": "W/\"1173858\"",
      "subject": "Product servicing requirement",
      "description": "Diagnosed and created a list of issues. Captured preliminary customer and product information. Created follow-up activities. Generated email using the relevant template. Assigned to the relevant team.",
      "actualstart": null,
      "activityid": "da81ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": "fc9e62a8-90df-e311-9565-a45d36fc5fe8"
    },
    {
      "@odata.etag": "W/\"1173758\"",
      "subject": "Product Sample",
      "description": null,
      "actualstart": null,
      "activityid": "8f018697-41de-e411-80e2-c4346bacd1a8",
      "_regardingobjectid_value": "6c0e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1173763\"",
      "subject": "Discuss Product Options, Pricing, and Terms",
      "description": null,
      "actualstart": "2015-05-18T03:59:03Z",
      "activityid": "5700b68b-d7fc-e411-80eb-c4346bb5a81c",
      "_regardingobjectid_value": "6c0e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1173767\"",
      "subject": "Follow up to define customer need",
      "description": "Reach out to Cat to determine what Coho is looking for",
      "actualstart": "2014-06-14T00:28:33Z",
      "activityid": "e9fcd206-e0be-e511-80e1-6c3be5a8a258",
      "_regardingobjectid_value": "950d0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1173709\"",
      "subject": "Maintenance information",
      "description": "Defined and captured critical customer requirements. Reviewed the draft content with key players on the committee; recorded attendees. Generated email using the relevant template.",
      "actualstart": null,
      "activityid": "dc81ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": "009f62a8-90df-e311-9565-a45d36fc5fe8"
    },
    {
      "@odata.etag": "W/\"1173864\"",
      "subject": "Schedule an appointment for maintenance",
      "description": "Schedule an appointment with the customer. Capture preliminary customer and product information. Generate letter or email using the relevant template. Assign to the relevant team.",
      "actualstart": null,
      "activityid": "e081ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": "049f62a8-90df-e311-9565-a45d36fc5fe8"
    },
    {
      "@odata.etag": "W/\"1173693\"",
      "subject": "Determine which type of Service is needed",
      "description": "Discuss with Cathan the issue and what service is needed.",
      "actualstart": "2015-11-25T19:50:21Z",
      "activityid": "3a595336-32be-e511-80e3-6c3be5a852b0",
      "_regardingobjectid_value": "c7d27f2e-9493-e511-80d6-3863bb363e80"
    },
    {
      "@odata.etag": "W/\"1173713\"",
      "subject": "Check whether service appointment was made",
      "description": "Check customer and product information. Create follow-up activities. Generate letter or email using the relevant template. Assign to the relevant team.",
      "actualstart": null,
      "activityid": "e281ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": "0c9f62a8-90df-e311-9565-a45d36fc5fe8"
    },
    {
      "@odata.etag": "W/\"1173868\"",
      "subject": "Ask delivery manager to call back",
      "description": "Checked customer and product information. Diagnosed and created a list of issues. Created follow-up activities. Generated email using the relevant template. Assigned to the relevant team.",
      "actualstart": null,
      "activityid": "e481ac0c-91df-e311-b8e5-6c3be5a8b200",
      "_regardingobjectid_value": "149f62a8-90df-e311-9565-a45d36fc5fe8"
    },
    {
      "@odata.etag": "W/\"1173744\"",
      "subject": "Product Demo",
      "description": null,
      "actualstart": null,
      "activityid": "d4fcd206-e0be-e511-80e1-6c3be5a8a258",
      "_regardingobjectid_value": "c20e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1173728\"",
      "subject": "Confirm Shipment Sent",
      "description": null,
      "actualstart": "2015-04-08T18:32:05Z",
      "activityid": "3b018697-41de-e411-80e2-c4346bacd1a8",
      "_regardingobjectid_value": "400e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1173732\"",
      "subject": "Confirm Order",
      "description": null,
      "actualstart": "2015-04-08T11:31:52Z",
      "activityid": "47018697-41de-e411-80e2-c4346bacd1a8",
      "_regardingobjectid_value": "400e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1173736\"",
      "subject": "Send Products",
      "description": null,
      "actualstart": "2015-04-08T18:31:58Z",
      "activityid": "49018697-41de-e411-80e2-c4346bacd1a8",
      "_regardingobjectid_value": "400e0283-5bf2-e311-945f-6c3be5a8dd64"
    },
    {
      "@odata.etag": "W/\"1175301\"",
      "subject": "Send Adrian the upgrade schedule for the stores.",
      "description": null,
      "actualstart": "2016-01-18T15:59:08Z",
      "activityid": "37b4a267-fcbd-e511-80e3-6c3be5a852b0",
      "_regardingobjectid_value": "2b685c81-4f1c-e511-80d3-3863bb347ba8"
    },
    {
      "@odata.etag": "W/\"1173665\"",
      "subject": "Sign agreement with installers and update their schedule",
      "description": "Determine the appropriate order of installation and work with the installation team.",
      "actualstart": "2016-01-18T16:15:50Z",
      "activityid": "ff7b11d5-0bbe-e511-80e3-6c3be5a852b0",
      "_regardingobjectid_value": "2b685c81-4f1c-e511-80d3-3863bb347ba8"
    },
    {
      "@odata.etag": "W/\"1173801\"",
      "subject": "Send Factory Designer specs to City Power and Light",
      "description": "Send Factory Designer specs to Walter",
      "actualstart": "2015-05-17T04:41:16Z",
      "activityid": "51583134-e2be-e511-80e1-6c3be5a8a258",
      "_regardingobjectid_value": "5b4fa496-3ff2-e311-9864-a45d36fc5f1c"
    }
  ]
}