2018-07-26 10:29:09 +02:00
|
|
|
# Get all lists
|
2019-04-05 12:40:40 +02:00
|
|
|
GET http://localhost:8080/api/v1/namespaces/35/lists
|
2018-07-26 10:29:09 +02:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
|
|
|
# Get one list
|
2019-07-18 18:38:21 +02:00
|
|
|
GET http://localhost:8080/api/v1/lists/3
|
2018-07-26 10:29:09 +02:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
|
|
|
# Add a new list
|
2019-04-05 12:40:40 +02:00
|
|
|
PUT http://localhost:8080/api/v1/namespaces/35/lists
|
2018-07-26 10:29:09 +02:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
Content-Type: application/json
|
|
|
|
|
2018-11-17 00:17:37 +01:00
|
|
|
{
|
2018-12-29 15:29:50 +01:00
|
|
|
"title": "test"
|
2018-11-17 00:17:37 +01:00
|
|
|
}
|
2018-07-26 10:29:09 +02:00
|
|
|
|
|
|
|
###
|
|
|
|
|
2018-12-01 00:26:56 +01:00
|
|
|
# Add a new item
|
2018-12-29 15:29:50 +01:00
|
|
|
PUT http://localhost:8080/api/v1/lists/1
|
2018-09-12 22:59:45 +02:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
Content-Type: application/json
|
|
|
|
|
2018-12-01 03:00:57 +01:00
|
|
|
{
|
2018-12-29 15:29:50 +01:00
|
|
|
"text": "Task",
|
|
|
|
"description": "Schinken"
|
2018-12-01 03:00:57 +01:00
|
|
|
}
|
2018-09-12 22:59:45 +02:00
|
|
|
|
|
|
|
###
|
|
|
|
|
2018-12-01 00:26:56 +01:00
|
|
|
# Delete a task from a list
|
|
|
|
DELETE http://localhost:8080/api/v1/lists/14
|
2018-07-26 10:29:09 +02:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
2018-08-30 18:52:12 +02:00
|
|
|
# Get all teams who have access to that list
|
2018-09-06 08:42:18 +02:00
|
|
|
GET http://localhost:8080/api/v1/lists/28/teams
|
2018-08-30 18:52:12 +02:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
|
|
|
# Give a team access to that list
|
2018-09-19 08:08:41 +02:00
|
|
|
PUT http://localhost:8080/api/v1/lists/1/teams
|
2018-08-30 18:52:12 +02:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{"team_id":2, "right": 1}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
2018-09-19 08:08:41 +02:00
|
|
|
# Update a teams access to that list
|
|
|
|
POST http://localhost:8080/api/v1/lists/1/teams/2
|
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{"right": 0}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
2018-08-30 18:52:12 +02:00
|
|
|
# Delete a team from a list
|
|
|
|
DELETE http://localhost:8080/api/v1/lists/10235/teams/1
|
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
|
|
|
# Delete a team from a list
|
|
|
|
DELETE http://localhost:8080/api/v1/lists/10235/teams/1
|
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
2018-08-30 08:58:09 +02:00
|
|
|
# Get all users who have access to that list
|
2018-09-06 08:42:18 +02:00
|
|
|
GET http://localhost:8080/api/v1/lists/28/users
|
2018-08-30 08:58:09 +02:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
|
|
|
# Give a user access to that list
|
2019-07-18 18:38:21 +02:00
|
|
|
PUT http://localhost:8080/api/v1/lists/3/users
|
2018-08-30 08:58:09 +02:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
Content-Type: application/json
|
|
|
|
|
2019-07-18 18:38:21 +02:00
|
|
|
{"userID":"user4", "right":1}
|
2018-08-30 08:58:09 +02:00
|
|
|
|
|
|
|
###
|
2018-08-30 18:52:12 +02:00
|
|
|
|
2018-09-19 07:54:47 +02:00
|
|
|
# Update a users access to that list
|
|
|
|
POST http://localhost:8080/api/v1/lists/30/users/3
|
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{"right":2}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
2018-08-30 18:52:12 +02:00
|
|
|
# Delete a user from a list
|
2018-09-06 08:42:18 +02:00
|
|
|
DELETE http://localhost:8080/api/v1/lists/28/users/3
|
2018-08-30 18:52:12 +02:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
2018-11-02 17:59:49 +01:00
|
|
|
###
|
|
|
|
|
|
|
|
# Get all pending tasks
|
2018-12-02 19:31:03 +01:00
|
|
|
GET http://localhost:8080/api/v1/tasks/all
|
2018-11-02 17:59:49 +01:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
2018-11-03 16:05:45 +01:00
|
|
|
###
|
|
|
|
|
2018-12-02 01:49:30 +01:00
|
|
|
# Get all pending tasks with priorities
|
2019-02-18 19:06:15 +01:00
|
|
|
GET http://localhost:8080/api/v1/tasks/all?sort=priorityasc
|
2018-12-02 01:49:30 +01:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
2018-12-22 19:06:14 +01:00
|
|
|
# Get all pending tasks in a range
|
|
|
|
GET http://localhost:8080/api/v1/tasks/all/dueadateasc/1546784000/1548784000
|
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
2018-11-03 16:05:45 +01:00
|
|
|
# Get all pending tasks in caldav
|
|
|
|
GET http://localhost:8080/api/v1/tasks/caldav
|
|
|
|
#Authorization: Bearer {{auth_token}}
|
|
|
|
|
2018-11-26 21:24:00 +01:00
|
|
|
###
|
|
|
|
|
|
|
|
# Update a task
|
2019-01-08 20:13:07 +01:00
|
|
|
POST http://localhost:8080/api/v1/tasks/3565
|
2018-11-26 21:24:00 +01:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
Content-Type: application/json
|
|
|
|
|
2019-01-08 20:13:07 +01:00
|
|
|
{
|
2019-04-05 12:40:40 +02:00
|
|
|
"priority": 0
|
2019-01-08 20:13:07 +01:00
|
|
|
}
|
2018-11-26 21:24:00 +01:00
|
|
|
|
2018-12-28 22:49:46 +01:00
|
|
|
###
|
|
|
|
|
|
|
|
# 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"
|
|
|
|
}
|
|
|
|
|
|
|
|
###
|
2019-01-08 20:13:07 +01:00
|
|
|
# Get all assignees
|
|
|
|
GET http://localhost:8080/api/v1/tasks/3565/assignees
|
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
|
|
|
# Add a bunch of assignees
|
|
|
|
PUT http://localhost:8080/api/v1/tasks/3565/assignees/bulk
|
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{
|
|
|
|
"assignees": [
|
|
|
|
{"id": 17}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
###
|
2019-07-18 18:38:21 +02:00
|
|
|
|
|
|
|
# Get all users who have access to a list
|
|
|
|
GET http://localhost:8080/api/v1/lists/3/users
|
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
|
|
|
###
|