Add bulk edit for tasks (#42)
This commit is contained in:
@ -5,7 +5,7 @@ Authorization: Bearer {{auth_token}}
|
||||
###
|
||||
|
||||
# Get one list
|
||||
GET http://localhost:8080/api/v1/lists/15
|
||||
GET http://localhost:8080/api/v1/lists/1163
|
||||
Authorization: Bearer {{auth_token}}
|
||||
|
||||
###
|
||||
@ -137,4 +137,16 @@ Content-Type: application/json
|
||||
|
||||
{"startDate":1546804000, "endDate": 1546805000}
|
||||
|
||||
###
|
||||
###
|
||||
|
||||
# Bulk update multiple tasks at once
|
||||
POST http://localhost:8080/api/v1/tasks/bulk
|
||||
Authorization: Bearer {{auth_token}}
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"task_ids": [3518,3519,3521],
|
||||
"text":"bulkupdated"
|
||||
}
|
||||
|
||||
###
|
||||
|
Reference in New Issue
Block a user