Skip to content

Update a platform user profile picture

Request

Update the stored profile picture URL for a platform user

Security
bearerToken
Path
idstringrequired

The unique ID of the Platform User

Bodyapplication/jsonrequired
pictureUrlstringrequired

The URL of the profile picture to store against the platform user

Example:"https://example.com/profile-picture.jpg"
curl -i -X PUT \
  'https://api-v2.dash.app/platform/users/{id}/profile-picture' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "pictureUrl": "https://example.com/profile-picture.jpg"
  }'

Responses

Success

Response
No content