YouTube Reporting API
  1. jobs
YouTube Reporting API
  • jobs
    • /v1/jobs
      GET
    • /v1/jobs
      POST
    • /v1/jobs/{jobId}
      DELETE
    • /v1/jobs/{jobId}
      GET
    • /v1/jobs/{jobId}/reports
      GET
    • /v1/jobs/{jobId}/reports/{reportId}
      GET
  • media
    • /v1/media/{resourceName}
      GET
  • reportTypes
    • /v1/reportTypes
      GET
  1. jobs

/v1/jobs/{jobId}/reports/{reportId}

GET
/v1/jobs/{jobId}/reports/{reportId}
jobs
Gets the metadata of a specific report.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://youtubereporting.googleapis.com//v1/jobs//reports/'
Response Response Example
{
  "createTime": "string",
  "downloadUrl": "string",
  "endTime": "string",
  "id": "string",
  "jobExpireTime": "string",
  "jobId": "string",
  "startTime": "string"
}

Request

Path Params
jobId
string 
required
The ID of the job.
reportId
string 
required
The ID of the report to retrieve.
Query Params
onBehalfOfContentOwner
string 
optional
The content owner's external ID on which behalf the user is acting on. If not set, the user is acting for himself (his own channel).

Responses

🟢200Successful response
application/json
Body
A report's metadata including the URL from which the report itself can be downloaded.
createTime
string <google-datetime>
optional
The date/time when this report was created.
downloadUrl
string 
optional
The URL from which the report can be downloaded (max. 1000 characters).
endTime
string <google-datetime>
optional
The end of the time period that the report instance covers. The value is exclusive.
id
string 
optional
The server-generated ID of the report.
jobExpireTime
string <google-datetime>
optional
The date/time when the job this report belongs to will expire/expired.
jobId
string 
optional
The ID of the job that created this report.
startTime
string <google-datetime>
optional
The start of the time period that the report instance covers. The value is inclusive.
Previous
/v1/jobs/{jobId}/reports
Next
/v1/media/{resourceName}
Built with