Tenant Tags
Tenant tag management operations
Lists tags for a tenant
Authentication token obtained from the authentication service
The tenant ID
A valid authentication token
Tenant tags listed successfully
Some content in the request was invalid
User must authenticate before making a request
Policy does not allow current user to do this operation
The requested resource could not be found
GET /keystone/v3/projects/{project_id}/tags HTTP/1.1
Host: example.platform9.com
X-Auth-Token: text
Accept: */*
{
"tags": [
"text"
],
"links": {
"self": "text",
"previous": "text",
"next": "text"
}
}Replaces all tags for a tenant
Authentication token obtained from the authentication service
The tenant ID
A valid authentication token
Tenant tags replaced successfully
Some content in the request was invalid
User must authenticate before making a request
Policy does not allow current user to do this operation
The requested resource could not be found
PUT /keystone/v3/projects/{project_id}/tags HTTP/1.1
Host: example.platform9.com
X-Auth-Token: text
Content-Type: application/json
Accept: */*
Content-Length: 17
{
"tags": [
"text"
]
}{
"tags": [
"text"
],
"links": {
"self": "text",
"previous": "text",
"next": "text"
}
}Deletes all tags from a tenant
Authentication token obtained from the authentication service
The tenant ID
A valid authentication token
All tenant tags deleted successfully
No content
Some content in the request was invalid
User must authenticate before making a request
Policy does not allow current user to do this operation
The requested resource could not be found
DELETE /keystone/v3/projects/{project_id}/tags HTTP/1.1
Host: example.platform9.com
X-Auth-Token: text
Accept: */*
No content
Adds a tag to a tenant
Authentication token obtained from the authentication service
The tenant ID
The tag name
A valid authentication token
Tag added to tenant successfully
No content
Some content in the request was invalid
User must authenticate before making a request
Policy does not allow current user to do this operation
The requested resource could not be found
PUT /keystone/v3/projects/{project_id}/tags/{tag} HTTP/1.1
Host: example.platform9.com
X-Auth-Token: text
Accept: */*
No content
Removes a tag from a tenant
Authentication token obtained from the authentication service
The tenant ID
The tag name
A valid authentication token
Tag removed from tenant successfully
No content
Some content in the request was invalid
User must authenticate before making a request
Policy does not allow current user to do this operation
The requested resource could not be found
DELETE /keystone/v3/projects/{project_id}/tags/{tag} HTTP/1.1
Host: example.platform9.com
X-Auth-Token: text
Accept: */*
No content
Checks if a tenant has a specific tag
Authentication token obtained from the authentication service
The tenant ID
The tag name
A valid authentication token
Tenant has the tag
No content
Some content in the request was invalid
User must authenticate before making a request
Policy does not allow current user to do this operation
The requested resource could not be found
HEAD /keystone/v3/projects/{project_id}/tags/{tag} HTTP/1.1
Host: example.platform9.com
X-Auth-Token: text
Accept: */*
No content
Last updated
Was this helpful?
