User Tasks: list

Return information about User Tasks by User id.

Request - GET https://api-uat.vtopenview.com/userTasks/{userId}

You will need to supply UserId on your request parameters with this method.
You will need to include your access token upon making a request. For more information, see the authentication and authorization page.

Example request with authorization:

curl -- GET Base URI: https://api-uat.vtopenview.com/userTasks/{userId}
--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"
}
]
}
]
}