- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- Try it!
Delete a contact's photo.
Mutate requests for the same user should be done sequentially to avoid // lock contention.
HTTP request
DELETE https://people.googleapis.com/v1/{resourceName=people/*}:deleteContactPhoto
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
resourceName |
Required. The resource name of the contact whose photo will be deleted. |
Query parameters
Parameters | |
---|---|
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 |
Request body
The request body must be empty.
Response body
The response for deleting 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 DeleteContactPhotoRequest; 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.