{ "opencollection": "1.0.0", "info": { "name": "QaaS Backend admin qiskit-provider API", "version": "1.0.0" }, "items": [ { "info": { "name": "qiskit-provider", "type": "folder" }, "items": [ { "info": { "name": "List Backends", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/provider/backends", "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List quantum backends the calling user is allowed to use." }, { "info": { "name": "Get Backend Details", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/provider/backends/:backend_name", "params": [ { "name": "backend_name", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get detailed backend information." }, { "info": { "name": "Submit Job", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/provider/jobs", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Submit a quantum job for execution." }, { "info": { "name": "Get Job Status", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/provider/jobs/:job_id", "params": [ { "name": "job_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get job status and progress." }, { "info": { "name": "Cancel Job", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/provider/jobs/:job_id", "params": [ { "name": "job_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Cancel a quantum job." }, { "info": { "name": "Get Job Result", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/provider/jobs/:job_id/result", "params": [ { "name": "job_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get job result (measurement counts)." } ] } ], "bundled": true }