BatchUpdateContactsErrorDetails

  • The contactErrors field provides error details when the people.batchUpdateContacts action fails, helping identify problematic contacts.

  • It's structured as a map with contact resource names/IDs as keys and Status objects (containing error details) as values.

  • Successful contact updates are not included in this field; only failed updates have entries.

  • google.rpc.Status.details within the Status object lists specific errors encountered for each contact.

Message to record error details when the request fails in the people.batchUpdateContacts action.

JSON representation
{
 "contactErrors": {
 string: {
 object (Status )
 },
 ...
 }
}
Fields
contactErrors

map (key: string, value: object (Status ))

Provides details for the client to identify the contact(s) that caused the batch update to fail. If a contact id does not appear, then the update of that contact would have been successful.

In the map below:

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2024年08月06日 UTC.