Updated on 2025-12-01 GMT+08:00

Querying Resource Tags

Function

This API is used to query all resource tags.

URI

GET /v1/script/{resource_type}/tags

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

resource_type

Yes

String

Definition:

Resource type.

  • coc:script

Constraints:

Generally, coc-script uses only coc:script.

Value range:

  • coc:script: coc-script type

Default value:

N/A

Table 2 Query Parameters

Parameter

Mandatory

Type

Description

limit

No

String

Definition:

Maximum number of records that can be queried.

offset

No

String

Definition:

Start position of a query.

Request Parameters

None

Response Parameters

Status code: 200

Table 3 Response body parameters

Parameter

Type

Description

data

ListTagsResponse object

Definition:

Query the tag key-value pair of a custom script.

Value range:

N/A

Table 4 ListTagsResponse

Parameter

Type

Description

tags

Array of ScriptTag objects

Definition:

The key-value pair of a tag.

Value range:

N/A.

total

Long

Definition:

Total number of records.

Value range:

N/A.

Table 5 ScriptTag

Parameter

Type

Description

key

String

Definition:

Tag key.

Value range:

N/A.

values

Array of strings

Definition:

All values of a tag key.

Value range:

N/A.

Example Requests

None

Example Responses

Status code: 200

Request result is returned.

For more status codes, see Status Codes.

{
  "data" : {
    "tags" : [ {
      "key" : "22",
      "values" : [ "33" ]
    }, {
      "key" : "11",
      "values" : [ "2" ]
    } ],
    "total" : 2
  }
}

Status Codes

Status Code

Description

200

Request result is returned.

For more status codes, see Status Codes.

Error Codes

See Error Codes.