Skip to content

Update member

Request

Update the member 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
nameobject

The member's name information

emailstring

Primary email address of the user

secondary_emailsArray of strings

Secondary email addresses to add to user's current emails

phone_numberstring

Primary phone number of the user, specified in E.164 format

secondary_phone_numbersArray of strings

Secondary phone numbers to add to user's phone numbers, each specified in E.164 format

birthdaystring, (date-time)

User's birthday

languagestring

The language of the user, as provided by the browser using the Accept-Language header field

curl -i -X PATCH \
  '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 '{
    "name": {
      "title": "string",
      "first_name": "string",
      "last_name": "string",
      "middle_name": "string"
    },
    "email": "string",
    "secondary_emails": [
      "string"
    ],
    "phone_number": "string",
    "secondary_phone_numbers": [
      "string"
    ],
    "birthday": "2019-08-24T14:15:22Z",
    "language": "string"
  }'

Responses