Skip to main content
GET
/
tags
Python
from qaip import Qaip

client = Qaip(
    api_key="My API Key",
)
response = client.tags()
print(response.tags)
{
  "tags": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication

Response

Successful retrieval of tags

tags
object[]