PUT /users/{guid}
Update a specific user
/users/{guid}
PUT
Update a specific user
| Key | Type | Example | |
|---|---|---|---|
| :guid required | string |
"example-guid"
|
| Key | Type | Example | |
|---|---|---|---|
| authorization required | string |
"Bearer your-jwt-token"
|
| Key | Type | Example | Description |
|---|---|---|---|
| email optional | string |
"example-string"
|
Email address
|
| first_name optional | string |
"example-string"
|
First name
|
| last_name optional | string |
"example-string"
|
Last name
|
| active optional | boolean |
true
|
Whether user is active
|
| timezone optional | string |
"example-string"
|
User timezone
|
| language optional | string |
"example-string"
|
User language
|
{
"_meta": {
"guid": "example-string",
"entity": "example-value",
"created": "example-value",
"modified": "example-value",
"updated": "example-value"
},
"username": "example-string",
"email": "example-string",
"firstname": "example-string",
"lastname": "example-string",
"last_activity": "example-value",
"timezone": "example-string",
"language": "example-string"
}
{
"success": false,
"error": "ERROR_KEY"
}
| permission | description |
|---|---|
BearerAuth |
JWT access token obtained from login endpoint required |
Back to Users Return to the Users category to view other endpoints All API Categories Browse all available API categories