- API Reference
- APIs
- CMK Management
- Querying Project Tags
Querying Project Tags¶
Function¶
This API enables you to query all tag sets of a specified project.
URI¶
URI format
GET /v1.0/{project_id}/kms/tags
Parameter description
¶ Parameter
Mandatory
Type
Description
project_id
Yes
String
Project ID
Requests¶
None
Responses¶
Parameter | Mandatory | Type | Description |
---|---|---|---|
tags | Yes | Array of objects | list of tags, including tag keys and tag values.
|
Examples¶
The following example describes how to query project tags.
Example request
None
Example response
{ "tags": [ { "key": "key1", "values": [ "value1", "value2" ] }, { "key": "key2", "values": [ "value1", "value2" ] } ] }
or
{ "error": { "error_code": "KMS.XXXX", "error_msg": "XXX" } }
Status Codes¶
Table 3 lists the normal status code returned by the response.
Status Code | Status | Description |
---|---|---|
200 | OK | Request processed successfully. |
Exception status code. For details, see Status Codes.