Method: accounts.locations.insuranceNetworks.list
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
Google でサポートされているすべての保険ネットワークのリストを返します。
HTTP リクエスト
GET https://mybusiness.googleapis.com/v4/{parent=accounts/*/locations/*}/insuranceNetworks
この URL は gRPC Transcoding 構文を使用します。
パスパラメータ
パラメータ |
parent |
string
必須。保険ネットワークがリストされる場所の名前です。名前の形式は、accounts/{accountId}/locations/{locationId} です。
|
クエリ パラメータ
パラメータ |
languageCode |
string
省略可。言語の BCP 47 コード。言語コードが指定されていない場合は、デフォルトで英語に設定されます。現在、「en」のみサポートされています。
|
pageSize |
integer
1 ページあたりで返す保険ネットワークの数。デフォルト値は 5000 です。ページの最大サイズは 10,000 です。
|
pageToken |
string
指定すると、保険ネットワークの次のページが返されます。
|
リクエスト本文
リクエストの本文は空にする必要があります。
レスポンスの本文
成功した場合、レスポンスの本文には次の構造のデータが含まれます。
InsuranceNetworkService.ListInsuranceNetworks に対するレスポンス メッセージ
JSON 表現 |
{
"networks": [
{
object (InsuranceNetwork )
}
],
"nextPageToken": string
} |
フィールド |
networks[] |
object (InsuranceNetwork )
Google がサポートする保険ネットワークのリスト。
|
nextPageToken |
string
リクエストされたページサイズよりも多くの保険ネットワークがある場合、このフィールドには、後続の insNetworks.list の呼び出しで保険ネットワークの次のページを取得するためのトークンが入力されます。
|
認可スコープ
次の OAuth スコープのいずれかが必要です。
https://www.googleapis.com/auth/plus.business.manage
https://www.googleapis.com/auth/business.manage
詳しくは、OAuth 2.0 の概要をご覧ください。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-08-29 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2024-08-29 UTC。"],[[["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."]]],["This describes retrieving insurance networks supported by Google via a `GET` request to `https://mybusiness.googleapis.com/v4/{parent=accounts/*/locations/*}/insuranceNetworks`. Required path parameter `parent` specifies the location. Optional query parameters include `languageCode`, `pageSize`, and `pageToken` for language, results per page and pagination. An empty request body is expected. The response includes a list of `networks` and a `nextPageToken` for further results. Authorization requires either `plus.business.manage` or `business.manage` scope.\n"]]