2018-07-25 22:26:53 +02:00
|
|
|
# Get all namespaces
|
|
|
|
GET http://localhost:8080/api/v1/namespaces
|
2018-09-04 20:15:24 +02:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
2018-09-06 08:42:18 +02:00
|
|
|
# Get one namespaces
|
2019-01-21 23:08:04 +01:00
|
|
|
GET http://localhost:8080/api/v1/namespaces/-1
|
2018-09-06 08:42:18 +02:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
2018-09-04 20:15:24 +02:00
|
|
|
# Get all users who have access to that namespace
|
2018-09-06 08:42:18 +02:00
|
|
|
GET http://localhost:8080/api/v1/namespaces/12/users
|
2018-09-04 20:15:24 +02:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
|
|
|
# Give a user access to that namespace
|
2018-09-19 08:03:39 +02:00
|
|
|
PUT http://localhost:8080/api/v1/namespaces/1/users
|
2018-09-04 20:15:24 +02:00
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
Content-Type: application/json
|
|
|
|
|
2018-09-06 08:42:18 +02:00
|
|
|
{"user_id":3, "right": 0}
|
2018-09-04 20:15:24 +02:00
|
|
|
|
|
|
|
###
|
|
|
|
|
2018-09-19 08:03:39 +02:00
|
|
|
# Update a users access to that namespace
|
|
|
|
POST http://localhost:8080/api/v1/namespaces/1/users/3
|
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{"right": 2}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
2018-09-04 20:15:24 +02:00
|
|
|
# Delete a user from a namespace
|
|
|
|
DELETE http://localhost:8080/api/v1/namespaces/1/users/2
|
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
2018-09-19 08:16:04 +02:00
|
|
|
###
|
|
|
|
|
|
|
|
# Get all teams who have access to that namespace
|
|
|
|
GET http://localhost:8080/api/v1/namespaces/1/teams
|
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
|
|
|
# Give a team access to that namespace
|
|
|
|
PUT http://localhost:8080/api/v1/namespaces/1/teams
|
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{"team_id":3, "right": 0}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
|
|
|
# Update a teams access to that namespace
|
|
|
|
POST http://localhost:8080/api/v1/namespaces/1/teams/1
|
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{"right": 0}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
|
|
|
# Delete a team from a namespace
|
|
|
|
DELETE http://localhost:8080/api/v1/namespaces/1/teams/2
|
|
|
|
Authorization: Bearer {{auth_token}}
|
|
|
|
|
2018-09-04 20:15:24 +02:00
|
|
|
###
|