Update a User

Update the properties of a specified ACS user

Updates any of the following properties of a specified ACS user:

  • full_name

  • email_address

  • phone_number

  • access_schedule

Request

Specify the desired ACS user by including the corresponding acs_user_id in the request body. In addition, in the request body, include the properties that you want to update, along with the desired replacement values.

Request Body Parameters

Sample Request

seam.acs.users.update(
  acs_user_id="33333333-3333-3333-3333-333333333333",
  full_name="Jack Doe",
  email_address="jack@example.com",
  phone_number="+15555550101",
  access_schedule={
    "starts_at": "2024-04-01T10:40:00Z",
    "ends_at": "2024-04-04T10:40:00Z"
  }
)

Response

Returns a Boolean ok status indicator or void.

Sample Response

None

Last updated

Logo

© Seam Labs, Inc. All rights reserved.