Skip to main contentIBM Quantum Documentation

Analytics


Get analytics filters

Get analytics filters

Query Parameters

Name, TypeDescription
instance
Required
string

Instance to get filters for

HTTP Response Status Codes

Status codeDescription
200
401Unauthorized
403Forbidden
404Not found
500Internal server error

Code samples

GET
/analytics/filters
curl -X GET \
  https://api.quantum-computing.ibm.com/runtime/analytics/filters \
  -H 'Authorization: Bearer YOUR-TOKEN' \
  -H 'Accept: application/json'

Responses

{
  "backends": [
    {
      "name": "simulator",
      "deleted": true
    }
  ],
  "users": [
    {
      "id": "123",
      "firstName": "John",
      "lastName": "Doe",
      "email": "[email protected]",
      "deleted": true
    }
  ],
  "countries": [
    {
      "label": "United States of America",
      "code": "US"
    }
  ],
  "instances": [
    {
      "id": "hub/group"
    }
  ]
}
Was this page helpful?
Report a bug or request content on GitHub.