Update an ACS User

Updates the properties of a specified access system user.

PATCH /acs/users/update ⇒ void
Authentication Methods
  • API key

  • Personal access token Must also include the seam-workspace header in the request.

To learn more, see Authentication.

Request Parameters

acs_user_id (Required)

ID of the ACS user.


access_schedule

starts_at and ends_at timestamps for the access system user's access. If you specify an access_schedule, you may include both starts_at and ends_at. If you omit starts_at, it defaults to the current time. ends_at is optional and must be a time in the future and after starts_at.


email


email_address

Email address of the ACS user.


full_name

Full name of the ACS user.


hid_acs_system_id


phone_number

Phone number of the ACS user in E.164 format (for example, +15555550100).


Response

void


Examples

Update an ACS user

Update the properties of a specific ACS user.

Code

await seam.acs.users.update({
  acs_user_id: "8d7e0b3a-b889-49a7-9164-4b71a0506a33",
  phone_number: "+15555550222",
});

Output

// void

Last updated

Was this helpful?