Page Summary
-
This API endpoint retrieves a list of music change requests related to a specific release or track via a
GETrequest to the provided URL. -
You can filter the results using various parameters, such as
pageSize,pageToken,onBehalfOfContentOwner, andfilter, allowing for customized data retrieval. -
The response contains an array of
changeRequests, which represent the music change requests, and anextPageTokenfor accessing subsequent pages of results. -
Authorization to use this endpoint requires the
https://www.googleapis.com/auth/youtubepartnerOAuth scope. -
The
ChangeRequestFilterobject allows for filtering change requests based on the parent release or track.
- HTTP request
- Query parameters
- Request body
- Response body
- Authorization scopes
- ChangeRequestFilter
- Try it!
Retrieves a list of music change requests reported to a release or a track.
HTTP request
GET https://youtubepartner.googleapis.com/youtube/partner/v1/music/changeRequests
The URL uses gRPC Transcoding syntax.
Query parameters
| Parameters | |
|---|---|
pageSize
|
The maximum number of change requests to return. The service may return fewer than this value. If unspecified, at most 30 change requests will be returned. The maximum value is 50; values above 50 will be coerced to 50. |
pageToken
|
A page token, received from a previous When paginating, all other parameters provided to |
onBehalfOfContentOwner
|
Identifies the content owner that the user is acting on behalf of. This parameter supports users whose accounts are associated with multiple content owners. |
filter
|
Filtering based on various parameters in musicChangeRequests.list. |
Request body
The request body must be empty.
Response body
A response to list music change requests.
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{
"changeRequests"
:
[
{
object (
|
| Fields | |
|---|---|
changeRequests[]
|
The requested music change requests. |
nextPageToken
|
A token, which can be sent as |
Authorization scopes
Requires the following OAuth scope:
-
https://www.googleapis.com/auth/youtubepartner
For more information, see the OAuth 2.0 Overview .
ChangeRequestFilter
Representation of an expression for filtering in musicChangeRequests.list. We always take the conjunction (logical AND) of the filters, so a changeRequest must meet all criteria to be returned.
| JSON representation |
|---|
{ "parent" : string } |
| Fields | |
|---|---|
parent
|
Required. The parent of the change request. Could be a release or a track. Format: releases/{release} or releases/{release}/tracks/{track} |

