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"
}
]List all Connection 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"
}
]OK
CreatedAt is the timestamp when this tag was created
"2023-08-15T14:30:45Z"
ID is the unique identifier for this specific tag
"tag_01H7ZD5SJRZ7RPGQRMT4Y9HF"
Key is the identifier for the tag category (e.g., "environment", "department")
"environment"
UpdatedAt is the timestamp when this tag was last updated
"2023-08-15T14:30:45Z"
Value is the specific tag value associated with the key (e.g., "production", "finance")
"production"
Was this page helpful?