Skip to main content

org_copilot_repos_one_day_report

Creates, updates, deletes, gets or lists an org_copilot_repos_one_day_report resource.

Overview

Nameorg_copilot_repos_one_day_report
TypeResource
Idgithub.copilot.org_copilot_repos_one_day_report

Fields

The following fields are returned by SELECT queries:

Response

NameDatatypeDescription
download_linksarrayThe URLs to download the Copilot usage metrics report for the enterprise/organization for the specified day.
report_daystring (date)The day of the report in YYYY-MM-DD format.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
copilot_organization_repos_one_day_reportselectorg, dayUse this endpoint to retrieve download links for the Copilot organization repository report for a specific day. The report provides per-repository pull request metrics for Copilot across the organization, with one entry per repository.

The report contains repository-level pull request activity for the specified day, including the Copilot Coding Agent (CCA) and Copilot Code Review (CCR) breakdowns. Only repositories that had activity on the specified day are included. Reports are generated daily and made available for download through signed URLs with a limited expiration time.

The response includes download links to the report files, along with the specific date of the report. The report covers a complete day for which data has been processed.

Organization owners and authorized users with fine-grained "View Organization Copilot Metrics" permission can retrieve Copilot metrics reports for the organization. OAuth app tokens and personal access tokens (classic) need the read:org scope to use this endpoint.

For more information about organization metrics attribution, see How are metrics attributed across organizations.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
daystring (date)The day to request data for, in YYYY-MM-DD format.
orgstringThe organization name. The name is not case sensitive.

SELECT examples

Use this endpoint to retrieve download links for the Copilot organization repository report for a specific day. The report provides per-repository pull request metrics for Copilot across the organization, with one entry per repository.

The report contains repository-level pull request activity for the specified day, including the Copilot Coding Agent (CCA) and Copilot Code Review (CCR) breakdowns. Only repositories that had activity on the specified day are included. Reports are generated daily and made available for download through signed URLs with a limited expiration time.

The response includes download links to the report files, along with the specific date of the report. The report covers a complete day for which data has been processed.

Organization owners and authorized users with fine-grained "View Organization Copilot Metrics" permission can retrieve Copilot metrics reports for the organization. OAuth app tokens and personal access tokens (classic) need the read:org scope to use this endpoint.

For more information about organization metrics attribution, see How are metrics attributed across organizations.

SELECT
download_links,
report_day
FROM github.copilot.org_copilot_repos_one_day_report
WHERE org = '{{ org }}' -- required
AND day = '{{ day }}' -- required
;