Annotation endpoints
API token endpoints
Dataset endpoints
Monitor endpoints
Notifier endpoints
Organization endpoints
Role-based access control endpoints
Starred queries endpoints
User endpoints
User endpoints
Update current user
Update current user
Update current user
PUT
/
user
curl --request PUT \
--url https://api.axiom.co/v2/user \
--header 'Content-Type: application/json' \
--data '{
"name": "John Smith"
}'
{
"email": "john.doe@example.com",
"id": "usr_123456789",
"name": "John Doe",
"role": {
"id": "role_123456789",
"name": "Organization Admin"
}
}
Body
application/json
Object representing a user update request
Response
200 - application/json
User
Represents a user in the system
Was this page helpful?
curl --request PUT \
--url https://api.axiom.co/v2/user \
--header 'Content-Type: application/json' \
--data '{
"name": "John Smith"
}'
{
"email": "john.doe@example.com",
"id": "usr_123456789",
"name": "John Doe",
"role": {
"id": "role_123456789",
"name": "Organization Admin"
}
}