POST
/
me
/
profile-picture
Upload Profile Picture
curl --request POST \
  --url https://{deploymentHost}/me/profile-picture \
  --header 'Content-Type: multipart/form-data' \
  --form file=@example-file
{
"status": 200,
"message": "",
"data": {
"image_url": "https://cdn.example.com/users/profile-pictures/user_456789123_1642680000.jpg",
"has_profile_picture": true,
"uploaded_at": "2024-01-15T12:00:00Z"
},
"session": {
"signin_attempts": [],
"signins": [
{
"id": "signin_987654321",
"user_id": "user_456789123",
"created_at": "2024-01-01T12:00:00Z"
}
],
"signup_attempts": [],
"active_signin": {
"id": "signin_987654321",
"user_id": "user_456789123",
"created_at": "2024-01-01T12:00:00Z"
}
},
"errors": []
}

Authorizations

__session
string
cookie
required

Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.

Body

multipart/form-data

Response

200
application/json

Profile picture uploaded successfully

The response is of type object.