/api/2.0/tasks/
GET https://developer.salesfusion.com/api/2.0/tasks/
Description:
Reads a paginated list of tasks in batches of 100. Contains a limited number of columns with basic information.
Tasks Level - Ordering:
The following fields on the Tasks level are available for ordering via ascending or descending.
activity_id - Ascending/Descending
contact__first_name - Ascending/Descending
contact__last_name - Ascending/Descending
owner__first_name - Ascending/Descending
owner__last_name - Ascending/Descending
due_date - Ascending/Descending
account__account_name - Ascending/Descending
subject - Ascending/Descending
comments - Ascending/Descending
status - Ascending/Descending
priority - Ascending/Descending
Sample Response:
"count": 108687,
"total_count": 108687,
"page_size": 100,
"page_number": 1,
"next": "https://developer.salesfusion.com/api/2.0/tasks/?page=2",
"previous": null,
"results": [
{
"task": "https://developer.salesfusion.com/api/2.0/tasks/2/",
"task_id": 2,
"account_id": 325,
"account_name": "test",
"owner_id": 1,
"owner_email": "michael.north@sandbox.salesforce.com",
"owner_first_name": "Michael",
"owner_last_name": "LocalOnly",
"contact_id": 49,
"contact_first_name": null,
"contact_last_name": null,
"contact_status": null,
"opportunity_id": 0,
"description_text": "please call per ben lemmers",
"comments": "please call per ben lemmers",
"due_date": "2014-12-17",
"priority": "High",
"status": "Not Started",
"subject": "Call",
"created_by_id": 16,
"updated_by_id": 16
}