This endpoint returns a list of Task objects.
Method: GET
Endpoint: https://server/EventProApi/DataService.svc/tasks
Refer to Task Object.
This endpoint allows you to add a task to the system.
Method: POST
Endpoint: https://server/EventProApi/DataService.svc/task/add
You pass to this endpoint an Task object that is used to create the task. The created task is returned as an Task object.
Refer to Task Object.
This endpoint allows you to make modifications to a task.
Method: POST
Endpoint: https://server/EventProApi/DataService.svc/task/update
You pass to this endpoint an Task object with the Oid set to the Oid of the task you want to update.
Any non-read-only field you use will be updated on the task record.
The updated task is returned as an Task object.
Refer to Task Object.
This endpoint allows you to delete an existing task with a matching Oid.
Method: GET
Endpoint: https://server/EventProApi/DataService.svc/task/delete/{oid}
Refer to Task Object.