GET tags

get/data-services/v1beta1/tags

Returns a list of all tags when no select query parameter is provided. When a select query parameter is provided, then key or value of the tags are returned.

Securitybearer
Request
query Parameters
select
string

A list of properties to include in the response. Service currently only supports specification of all fields.

filter
string

The set of tags returned in the response. The supported comparisons are:

  • “eq” : Valid for number, boolean and string properties.
  • “ne” : Valid for number, boolean and string properties.
  • "contains"

Syntax:

  • “eq” : filter=<property> eq <value>
  • “ne” : filter=<property> ne <value>
  • "startswith" : filter=startswith(key, 'Houston')
  • "startswith" : filter=startswith(value, 'Houston') You can use "and" to filter on multiple fields "filter=<property1> eq <value1> and <property2> ne <value2>" Examples: GET /data-services/v1beta1/tags?filter=key eq Houston GET /data-services/v1beta1/tags?filter=startswith(key, Houston) and value eq Volume Filters are supported on following attributes:
  • key
  • value
sort
string

A comma separated list of properties to sort by, followed by a direction indicator ("asc" or "desc"). Default order is ascending. Service only supports sorting by 1 property per request. Supported fields include:

  • key
  • value - If specified, a secondary sort by "key asc" is included to guarantee consistent paging behavior.
Enum: "asc" "desc"
offset
integer >= 0
Default: 0

The number of results to skip. This is used for paging results.

limit
integer [ 1 .. 1000 ]
Default: 20

The number of results to return.

Example: limit=1
Responses
200

Successful operation

400

Bad request error

401

Authentication error

403

Authorization error

404

Resource not found error

500

Internal server error

503

Service Unavailable

Request samples
Response samples
application/json
{
  • "items": [
    ],
  • "count": 0,
  • "offset": 0,
  • "total": 0
}