GET
/
report
/
organizations
/
{org_id}
curl --request GET \
  --url https://api.ionq.co/v0.3/report/organizations/{org_id} \
  --header 'Authorization: <api-key>'
{
  "start_date": "2023-07-01",
  "end_date": "2023-07-31",
  "organization": "Arboreal Research Division",
  "organization_id": "71d164e-6ebe-4126-8839-f1529bb01a00",
  "budget": 150000,
  "balance": 47500,
  "currency": "USD",
  "qpus": [
    {
      "qpu_name": "qpu.harmony",
      "usage": 1500
    }
  ],
  "members": [
    {
      "id": "64dd217730fd9d001c38fa6a",
      "jobs": 3,
      "user_email": "[email protected]",
      "first_name": "Sammy",
      "last_name": "Davis Jr.",
      "execution_time": 1200,
      "quota": 250,
      "quota_consumed": 45
    }
  ]
}

Authorizations

Authorization
string
headerrequired

API keys are associated with a user and can be created on the IonQ Quantum Cloud application. To authenticate, prefix your API Key with apiKey and place it in the Authorization request header. Ex: Authorization: apiKey your-api-key

Path Parameters

org_id
string
required

The UUID of the organization — this UUID is provided in the response on organization creation.

Query Parameters

start_date
string

The start date of report.

end_date
string

The end date of report.

Response

200 - application/json
start_date
string

Start date.

end_date
string

End date.

organization
string

Organization name.

organization_id
string

UUID of an organization.

budget
number

Organization quota limit.

balance
number

Organization balance.

currency
string

Organization currency.

qpus
object[]
members
object[]

A list of user reports.

Was this page helpful?