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" }.