File tree 1 file changed +14
-0
lines changed
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ Table of contents
97
97
* [ 5 Create a task based on Contact email] ( #55-create-a-task-based-on-contact-email )
98
98
* [ 6 Update a task (Partial update)] ( #56-update-a-task-partial-update )
99
99
* [ 7 Delete a task based on ID] ( #57-delete-a-task-based-on-id )
100
+ * [ 8 Listing Tasks] ( #58-Listing-Tasks- )
100
101
101
102
** [ Events] ( #6-events-api ) **
102
103
* [ Event fields] ( #6-events-api )
@@ -3352,6 +3353,19 @@ Method: DELETE
3352
3353
- Status 204 : Task deleted successfully.
3353
3354
- Status 401 : Unauthorised. (when the user name and password fields are wrong.)
3354
3355
3356
+ ## 5.8 Listing Tasks :
3357
+ ### dev/ api/ tasks/
3358
+ Method: GET
3359
+
3360
+ - Returns list of all " Tasks" in the domain in JSON format, which are ordered by created time.
3361
+
3362
+ ### Using curl
3363
+ ` ` ` sh
3364
+ curl https:{domain}.agilecrm.com/dev/api/tasks -H "Accept:application/json" -v -u {email}:{API Key} -X DELETE
3365
+ ` ` `
3366
+ ### Response:
3367
+ - Status 204 : Successfully retrieved the Tasks list.
3368
+ - Status 401 : Unauthorised. (when the user name and password fields are wrong.)
3355
3369
3356
3370
3357
3371
6. Events API
You can’t perform that action at this time.
0 commit comments