Skip to content

Update member

Request

Update the membership details of the specified user.

Required permissions: apps:edit, [appId]:edit, users:edit.

Security
OrgAdminAccessToken or ClientAccessToken
Path
organization_idstringrequired

ID of the organization

user_idstringrequired

ID of the user

Bodyapplication/jsonrequired
enabledboolean

Indicates if the user's membership is currently enabled

Default:true
departmentstring

The department of the user within the organization

titlestring

The title of the user within the organization

managerstring

The manager of the user within the organization

curl -i -X PUT \
  'https://api.sbx.transmitsecurity.io/cis/v1/organizations/{organization_id}/members/{user_id}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "enabled": true,
    "department": "string",
    "title": "string",
    "manager": "string"
  }'

Responses

Bodyapplication/json
resultobjectread-onlyrequired

User ID autogenerated upon user creation

Response
{ "result": { "user_id": "string" } }