Delete User Avatar¶
This endpoint deletes a user.
Request¶
DELETE https://v2.api.uberflip.com/users/{userId}/avatar
Path Parameters | Description |
---|---|
userId | The unique identifier of the user |
Examples¶
curl -X DELETE -H "Authorization: Bearer [Token]" \
-i https://v2.api.uberflip.com/users/{userId}/avatar
Sample response:
HTTP/1.1 200 OK
Content-Type: application/json
{
"id": 1,
"first_name": "User",
"last_name": "One",
"email": "userone@user.com",
"federation_id": null,
"avatar_url": null,
"calendly_url": null,
"google_plus_id": null,
"twitter_handle": "userone",
"linkedin_profile_url": null,
"website_url": null,
"bio": "user biography",
"author_url_slug": "user-one",
"last_logged_in_at": "2018-11-20T14:54:14-0500",
"last_logged_in_from": "38.117.100.180",
"created_at": "2012-06-06T15:39:18-0400",
"modified_at": "2018-11-20T14:54:14-0500"
}