Project Tags
Project tag management operations
Lists tags for a project
Authentication token obtained from the authentication service
The project ID
A valid authentication token
Project 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 /v3/projects/{project_id}/tags HTTP/1.1
Host: identity.example.com
X-Auth-Token: text
Accept: */*
{
"tags": [
"text"
],
"links": {
"self": "text",
"previous": "text",
"next": "text"
}
}Replaces all tags for a project
Authentication token obtained from the authentication service
The project ID
A valid authentication token
Project 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 /v3/projects/{project_id}/tags HTTP/1.1
Host: identity.example.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 project
Authentication token obtained from the authentication service
The project ID
A valid authentication token
All project tags deleted 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
DELETE /v3/projects/{project_id}/tags HTTP/1.1
Host: identity.example.com
X-Auth-Token: text
Accept: */*
No content
Adds a tag to a project
Authentication token obtained from the authentication service
The project ID
The tag name
A valid authentication token
Tag added to project 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 /v3/projects/{project_id}/tags/{tag} HTTP/1.1
Host: identity.example.com
X-Auth-Token: text
Accept: */*
No content
Removes a tag from a project
Authentication token obtained from the authentication service
The project ID
The tag name
A valid authentication token
Tag removed from project 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
DELETE /v3/projects/{project_id}/tags/{tag} HTTP/1.1
Host: identity.example.com
X-Auth-Token: text
Accept: */*
No content
Checks if a project has a specific tag
Authentication token obtained from the authentication service
The project ID
The tag name
A valid authentication token
Project has the tag
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 /v3/projects/{project_id}/tags/{tag} HTTP/1.1
Host: identity.example.com
X-Auth-Token: text
Accept: */*
No content
Last updated
Was this helpful?
