Update current user
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.
namestringOptionalExample:
New full name
Jan Jongboom
jobTitlestringOptionalExample:
New job title
Embedded Software Engineer
companyNamestringOptionalExample:
New company name
Edge Impulse Inc.
experimentsstring[]Optional
List of user experiments
projectsSortOrderstring · enumOptionalPossible values:
Default sort order on the projects list
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?