User Tasks: list

Return information about User Tasks by Modified date.

Request - GET https://api-uat.vtopenview.com/userTasks?modifiedDate={modifiedDate}

You can filter tasks by supplying a modifiedDate query parameter in your request (format: YYYY-MM-DD).
You will need to include your access token when making the request. For more information, see the authentication and authorization page.

Example request with authorization:

curl -- GET Base URI: https://api-uat.vtopenview.com/userTasks?modifiedDate={modifiedDate}
--header "Authorization: Bearer MTQ0NjJkZmQ5OTM2NDE1ghNNBiuyUYUN"

Response

If successful, this method returns a response body with the following structure:

Example response:

HTTPS 200 OK
Content-Type: application/json
{
"UserTasks": [
{
"TaskId": long,
"UserId": long,
"AssignedUserId": long,
"Title": "string",
"Description": "string",
"StartDate": "date",
"EndDate": "date",
"PropertyId": long,
"PropertyDisplayAs": "string",
"RecordId": long,
"RecordType": integer,
"RecordDisplay": "string",
"High": boolean,
"Medium":boolean,
"Low": boolean,
"Completed": boolean,
"Lettings": boolean,
"Sales": boolean,
"ToDoList": [
{
"ToDoId": long,
"TaskId": long,
"Description":"string",
"Completed": boolean,
"Order": integer
}
],
"Negotiators": [
{
"TaskId": long,
"UserId": long,
"UserName":"string",
"Forename":"string",
"Surname":"string",
"CompanyId":integer,
"Avatar":"string",
"Email""string"
}
]
}
]
}