Update current user

Update current user

post

Update user properties such as name. This function is only available through a JWT token.

Authorizations
Body

Only fields set in this object will be updated.

namestringOptional

New full name

Example: Jan Jongboom
jobTitlestringOptional

New job title

Example: Embedded Software Engineer
companyNamestringOptional

New company name

Example: Edge Impulse Inc.
experimentsstring[]Optional

List of user experiments

projectsSortOrderstring · enumOptional

Default sort order on the projects list

Possible values:
timezonestringOptional

User timezone.

Responses
200
OK
application/json
post
POST /v1/api/user HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 172

{
  "name": "Jan Jongboom",
  "jobTitle": "Embedded Software Engineer",
  "companyName": "Edge Impulse Inc.",
  "experiments": [
    "text"
  ],
  "projectsSortOrder": "created-asc",
  "timezone": "text"
}
200

OK

{
  "success": true,
  "error": "text"
}

Last updated

Was this helpful?