Skip to main content
PUT
/
v0
/
user
/
me
/
profile-picture
Upload User Profile Picture
curl --request PUT \
  --url https://api.example.com/v0/user/me/profile-picture \
  --header 'Content-Type: multipart/form-data' \
  --form file='@example-file'
{
  "_links": {
    "kyc": {
      "description": "Submit KYC information",
      "href": "/v0/user/me/kyc",
      "method": "PUT"
    },
    "self": {
      "href": "/v0/user/me",
      "method": "GET"
    },
    "wallets": {
      "href": "/v0/wallets",
      "method": "GET"
    }
  }
}

Headers

x-juno-jwt
string | null

Body

multipart/form-data
file
file
required

Response

Profile picture uploaded successfully

HAL-style hypermedia links for navigation.

profile_picture_url
string
required

Public URL of the uploaded picture.