Skip to content

Patch a platform user

Request

Update a Platform User

Security
bearerToken
Path
idstringrequired

The unique ID of the Platform User

Bodyapplication/jsonrequired
firstNamestring or null

The updated first name of the user

Example:"Bob"
lastNamestring or null

The updated last name of the user

Example:"Syurunkl"
curl -i -X PATCH \
  'https://api-v2.dash.app/platform/users/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "firstName": "Bob",
    "lastName": "Syurunkl"
  }'

Responses

Success

Response
No content