PUT api2/access_groups/{groupID}/users/{id}.json
Update access group user by id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| groupID |
access group ID |
integer |
Required |
| id |
Access group users ID |
integer |
Required |
Body Parameters
Access group user infos
api_root| Name | Description | Type | Additional information |
|---|---|---|---|
| entry | CustomerGroupUsersEx |
None. |
Request Format
{
"entry": {
"organisation": "sample string 2",
"email": "sample string 3",
"token": null,
"expire_at": "2025-11-04T11:32:04.6581068+01:00",
"group_id": 1,
"valid": true,
"confirmed": true,
"disabled": true,
"invited": true,
"custom_data_1": "sample string 4",
"authentication": 64,
"allowed_concurrent_users": 1,
"monthly_cost": 1,
"account_type": 64
}
}
Response Information
Resource Description
updated access group user
api_root| Name | Description | Type | Additional information |
|---|---|---|---|
| entry | CustomerGroupUsersEx |
None. |
Response Format
{
"entry": {
"id": 1,
"organisation": "sample string 2",
"email": "sample string 3",
"token": null,
"expire_at": "2025-11-04T11:32:04.6893429+01:00",
"group_id": 1,
"valid": true,
"created_at": "2025-11-04T11:32:04.6893429+01:00",
"confirmed": true,
"disabled": true,
"invited": true,
"custom_data_1": "sample string 4",
"authentication": 64,
"allowed_concurrent_users": 1,
"monthly_cost": 1,
"account_type": 64
}
}