Run in Apidog
Updates first and last name for sub-user id in the path. For non-primary users, an optional permissions object replaces the full set; omit it to leave permissions unchanged.
Request Add parameter in header API-key
Example: API-key: ********************
Body Params application/json Required
{ "firstname" : "Jan" , "lastname" : "Tester" } Request Code Samples
curl --location --request PUT 'https://mijn.host/api/v2/account/users/' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{"firstname":"Jan","lastname":"Tester"}' Responses application/json Generate Code
{
"status" : 0 ,
"status_description" : "string" ,
"data" : {
"updated" : true
}
}
Modified at 2026-04-09 12:56:00