Group
Last updated
Last updated
POST /api/v1/data/acl/group/add_user HTTP/1.1
Host: connect.<REGION>.decube.io
Content-Type: application/json
Accept: */*
Content-Length: 31
{
"user_id": "text",
"group_id": 1
}POST /api/v1/data/acl/group/remove_user HTTP/1.1
Host: connect.<REGION>.decube.io
Content-Type: application/json
Accept: */*
Content-Length: 31
{
"user_id": "text",
"group_id": 1
}GET /api/v1/data/acl/group?group_id=1 HTTP/1.1
Host: connect.<REGION>.decube.io
Accept: */*
{
"id": 1,
"name": "text",
"description": "text",
"owner": true,
"users": [
"text"
],
"policies": [
1
]
}GET /api/v1/data/acl/group/list HTTP/1.1
Host: connect.<REGION>.decube.io
Accept: */*
[
{
"id": 1,
"name": "text",
"description": "text",
"owner": true,
"users": [
"text"
],
"policies": [
1
]
}
]