Tags
List tags
Search and list the tags of jobs.
Code samples
GET
/tagscurl -H "x-access-token: <YOUR-TOKEN>" \
https://runtime-us-east.quantum-computing.ibm.com/tags
Responses
{
"tags": [
"tag1",
"tag2",
"tag3",
"tag4"
]
}
{
"type": "object",
"properties": {
"tags": {
"title": "Tags",
"description": "List of job or program tags",
"type": "array",
"minItems": 1,
"maxItems": 5,
"items": {
"type": "string",
"pattern": ".*",
"minLength": 1,
"maxLength": 24
}
}
}
}
Was this page helpful?