GET
/
connections-tags
curl --request GET \
  --url https://use.hoop.dev/api/connections-tags
[
  {
    "created_at": "2023-08-15T14:30:45Z",
    "id": "tag_01H7ZD5SJRZ7RPGQRMT4Y9HF",
    "key": "environment",
    "updated_at": "2023-08-15T14:30:45Z",
    "value": "production"
  }
]

Response

200
application/json
OK
created_at
string

CreatedAt is the timestamp when this tag was created

Example:

"2023-08-15T14:30:45Z"

id
string

ID is the unique identifier for this specific tag

Example:

"tag_01H7ZD5SJRZ7RPGQRMT4Y9HF"

key
string

Key is the identifier for the tag category (e.g., "environment", "department")

Example:

"environment"

updated_at
string

UpdatedAt is the timestamp when this tag was last updated

Example:

"2023-08-15T14:30:45Z"

value
string

Value is the specific tag value associated with the key (e.g., "production", "finance")

Example:

"production"