AI-generated Key Takeaways
- 
          Retrieves a list of all insurance networks supported by Google, filtered by location. 
- 
          Allows for pagination to handle large result sets, with customizable page size. 
- 
          Supports specifying language for results, although currently only English ('en') is available. 
- 
          Requires specific OAuth scopes for authorization, like https://www.googleapis.com/auth/plus.business.manage.
- 
          Returns an empty request body and a response containing an array of insurance networks and a token for the next page, if applicable. 
Returns a list of all insurance networks supported by Google.
HTTP request
GET https://mybusiness.googleapis.com/v4/{parent=accounts/*/locations/*}/insuranceNetworks
The URL uses gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
| parent | 
 Required. The name of the location whose insurance networks will be listed. The name is in the form: accounts/{accountId}/locations/{locationId} | 
Query parameters
| Parameters | |
|---|---|
| languageCode | 
 Optional. The BCP 47 code for the language. If a language code is not provided, it defaults to English. Right now only 'en' is supported. | 
| pageSize | 
 How many insurance networks to return per page. The default value is 5000. Maximum page size is 10000. | 
| pageToken | 
 If specified, returns the next page of insurance networks. | 
Request body
The request body must be empty.
Response body
If successful, the response body contains data with the following structure:
Response message for InsuranceNetworkService.ListInsuranceNetworks
| JSON representation | |
|---|---|
| {
  "networks": [
    {
      object ( | |
| Fields | |
|---|---|
| networks[] | 
 A list of insurance networks that are supported by Google. | 
| nextPageToken | 
 If there are more insurance networks than the requested page size, then this field is populated with a token to fetch the next page of insurance networks on a subsequent call to insuranceNetworks.list. | 
Authorization Scopes
Requires one of the following OAuth scopes:
- https://www.googleapis.com/auth/plus.business.manage
- https://www.googleapis.com/auth/business.manage
For more information, see the OAuth 2.0 Overview.