Page Summary
-
The
contactErrorsfield provides error details when thepeople.batchUpdateContactsaction 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.detailswithin 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 (
|
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:
- The key is the resource name / contact id in
BatchUpdateContactsRequest.contacts. - The value is a Status.
google.rpc.Status.detailswill contain the list of errors for the contact.
An object containing a list of "key": value
pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }
.

