Update a contact's photo.
Mutate requests for the same user should be sent sequentially to avoid increased latency and failures.
HTTP request
PATCH https://people.googleapis.com/v1/{resourceName=people/*}:updateContactPhoto
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
resourceName |
Required. Person resource name |
Request body
The request body contains data with the following structure:
JSON representation |
---|
{
"photoBytes": string,
"personFields": string,
"sources": [
enum ( |
Fields | |
---|---|
photoBytes |
Required. Raw photo bytes A base64-encoded string. |
personFields |
Optional. A field mask to restrict which fields on the person are returned. Multiple fields can be specified by separating them with commas. Defaults to empty if not set, which will skip the post mutate get. Valid values are:
|
sources[] |
Optional. A mask of what source types to return. Defaults to |
Response body
The response for updating a contact's photo.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"person": {
object ( |
Fields | |
---|---|
person |
The updated person, if personFields is set in the UpdateContactPhotoRequest; otherwise this will be unset. |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/contacts
For more information, see the Authorization guide.