v1

latestOpenAPI 3.0.02026-07-241010520.6 KB
Utility Bills

Retrieve Utility Bill

Retrieves a single utility bill from the project with a freshly-minted presigned file_url. The download URL expires after 24 hours; re-call this endpoint to refresh it.


Last-parse-wins semantics. Only the most recently uploaded bill on the project feeds its load profile and consumption data. A bill returned by this endpoint that is not the most recent is a historical artifact — it remains in storage but is not currently being used by Aurora to compute consumption.

get/tenants/{tenant_id}/projects/{project_id}/utility_bills/{id}

Path parameters

tenant_idstring uuid required

The ID of the tenant that the project is part of.

project_idstring uuid required

The ID of the project the bill belongs to.

idstring uuid required

The ID of the utility bill to retrieve.

Response

Utility bill retrieved.

Example response

{
  "utility_bill": {
    "name": "march_bill",
    "extension": ".pdf",
    "mime_type": "application/pdf",
    "size": 102400,
    "created_at": "2017-07-21T17:32:28Z"
  }
}