AI-generated Key Takeaways
- 
          The billingProfiles.list method retrieves a paginated list of billing profiles, which can be filtered by various parameters such as currency, subaccount, status, and name. 
- 
          The HTTP request uses a GET method and includes a path parameter for the user profile ID. 
- 
          The response body contains a list of billing profile objects along with a nextPageTokenfor pagination.
- 
          This method requires the https://www.googleapis.com/auth/dfatraffickingOAuth scope for authorization.
- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- Try it!
Retrieves a list of billing profiles, possibly filtered. This method supports paging.
HTTP request
GET https://dfareporting.googleapis.com/dfareporting/v4/userprofiles/{profileId}/billingProfiles
The URL uses gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
| profileId | 
 User profile ID associated with this request. | 
Query parameters
| Parameters | |
|---|---|
| maxResults | 
 Maximum number of results to return. | 
| currency_code | 
 Select only billing profile with currency. | 
| subaccountIds[] | 
 Select only billing profile with the specified subaccount.When onlySuggestion is true, only a single subaccountId is supported. | 
| status[] | 
 Select only billing profile with the specified status. | 
| onlySuggestion | 
 Select only billing profile which is suggested for the currencyCode & subaccountId using the Billing Suggestion API. | 
| ids[] | 
 Select only billing profile with these IDs. | 
| name | 
 Allows searching for billing profiles by name. Wildcards ( 
 ) are allowed. For example, 
 will return objects with names like 
 , 
 , or simply 
 . Most of the searches also add wildcards implicitly at the start and the end of the search string. For example, a search string of 
 will match objects with name 
 , 
 , or simply 
 . | 
| pageToken | 
 Value of the 
 from the previous result page. | 
| sortField | 
 Field by which to sort the list. | 
| sortOrder | 
 Order of sorted results. | 
Request body
The request body must be empty.
Response body
Billing profile billingProfiles.list Response
If successful, the response body contains data with the following structure:
| JSON representation | 
|---|
| {
  "kind": string,
  "nextPageToken": string,
  "billingProfiles": [
    {
      object ( | 
| Fields | |
|---|---|
| kind | 
 Identifies what kind of resource this is. Value: the fixed string 
 . | 
| nextPageToken | 
 Pagination token to be used for the next list operation. | 
| billingProfiles[] | 
 Billing profiles collection. | 
Authorization scopes
Requires the following OAuth scope:
- https://www.googleapis.com/auth/dfatrafficking