Update a specific user by id
curl --request PUT \
--url https://api.rootly.com/v1/users/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "users",
"attributes": {
"first_name": "<string>",
"last_name": "<string>",
"role_id": "<string>",
"on_call_role_id": "<string>"
}
}
}
'{
"data": {
"id": "622",
"type": "users",
"attributes": {
"name": "New Name",
"email": "[email protected]",
"phone": null,
"phone_2": null,
"first_name": "New",
"last_name": "Name",
"full_name": "New Name",
"full_name_with_team": "[Keeling-Muller] New Name",
"slack_id": null,
"time_zone": "Etc/UTC",
"updated_at": "2025-12-22T14:58:01.215-08:00",
"created_at": "2025-12-22T14:57:57.021-08:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "bb3af5e1-9330-4e00-8099-b0c6825cf180",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": {
"id": "d5089654-af67-4612-ad27-a9e2c9057253",
"type": "roles"
}
},
"on_call_role": {
"data": {
"id": "51f04535-77a5-4200-9b55-719217748d77",
"type": "on_call_roles"
}
},
"teams": {
"data": []
},
"schedules": {
"data": []
},
"notification_rules": {
"data": [
{
"id": "0407b4a8-76c3-4739-aa63-1523b0ee43fa",
"type": "user_notification_rules"
},
{
"id": "b60c0a60-5b0e-4601-ad9c-cb1f9ea872b7",
"type": "user_notification_rules"
}
]
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
update name and role simultaneously
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/users/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "users",
"attributes": {
"first_name": "<string>",
"last_name": "<string>",
"role_id": "<string>",
"on_call_role_id": "<string>"
}
}
}
'{
"data": {
"id": "622",
"type": "users",
"attributes": {
"name": "New Name",
"email": "[email protected]",
"phone": null,
"phone_2": null,
"first_name": "New",
"last_name": "Name",
"full_name": "New Name",
"full_name_with_team": "[Keeling-Muller] New Name",
"slack_id": null,
"time_zone": "Etc/UTC",
"updated_at": "2025-12-22T14:58:01.215-08:00",
"created_at": "2025-12-22T14:57:57.021-08:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "bb3af5e1-9330-4e00-8099-b0c6825cf180",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": {
"id": "d5089654-af67-4612-ad27-a9e2c9057253",
"type": "roles"
}
},
"on_call_role": {
"data": {
"id": "51f04535-77a5-4200-9b55-719217748d77",
"type": "on_call_roles"
}
},
"teams": {
"data": []
},
"schedules": {
"data": []
},
"notification_rules": {
"data": [
{
"id": "0407b4a8-76c3-4739-aa63-1523b0ee43fa",
"type": "user_notification_rules"
},
{
"id": "b60c0a60-5b0e-4601-ad9c-cb1f9ea872b7",
"type": "user_notification_rules"
}
]
}
}
}
}