Querying Tags Used by Resource Shares
Function
This API is used to query the list of tags used by resource shares.
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
X-Security-Token |
No |
String |
Security token (session token) for temporary security credentials. This parameter is mandatory when you make an API call using temporary security credentials. |
Response Parameters
Status code: 200
Parameter |
Type |
Description |
---|---|---|
tags |
Array of TagDTO objects |
List of one or more tag key-value pairs. The tag key cannot be left blank or be an empty string. The tag value must be specified and can be an empty string. |
page_info |
PageInfoMarkerByKey object |
Pagination details. |
Example Requests
Querying the list of tags used by a resource share
GET https://{endpoint}/v1/resource-shares/tags
Example Responses
Status code: 200
Request succeeded.
{ "tags" : [ { "key" : "string", "values" : [ "string" ] } ], "page_info" : { "previous_marker" : "string", "next_marker" : "string", "current_count" : 2000 } }
Status Codes
Status Code |
Description |
---|---|
200 |
Request succeeded. |
Error Codes
See Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.