import os
from qaip import Qaip
client = Qaip(
api_key=os.environ.get("QAIP_API_KEY"), # This is the default and can be omitted
)
response = client.tags()
print(response.tags){
"tags": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>"
}
]
}Returns the list of tags.
Required roles: All, App
import os
from qaip import Qaip
client = Qaip(
api_key=os.environ.get("QAIP_API_KEY"), # This is the default and can be omitted
)
response = client.tags()
print(response.tags){
"tags": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>"
}
]
}