billing
Create a usage report export
Initiates the generation of a usage report export for an enterprise. The report will be processed asynchronously and can be downloaded once completed. The authenticated user must be an enterprise admin or billing manager.
post/enterprises/{enterprise}/settings/billing/reports
Path parameters
enterprisestring required
The slug version of the enterprise name.
Request body
Example request
{
"start_date": "2024-01-01",
"end_date": "2024-01-31"
}Response
Report export request accepted
Example response
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"report_type": "detailed",
"start_date": "2024-01-01",
"end_date": "2024-01-31",
"status": "completed",
"download_urls": [
"https://github.com/enterprises/github/metered_exports/1234"
],
"created_at": "2024-01-15T10:30:00Z",
"actor": "monalisa"
}