Update an Unmanaged Access Code

Updates a specified unmanaged access code.

Updates a specified unmanaged access code.

Code

await seam.accessCodes.unmanaged.update({
  access_code_id: "ebd8e488-db1b-4f4b-9d02-489fbfa6829a",
  is_managed: true,
  is_external_modification_allowed: true,
  force: true,
});

Output

// void
Authentication Methods
  • API key

  • Client session token

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

To learn more, see Authentication.

Request Parameters

access_code_id String (Required)

ID of the unmanaged access code that you want to update.


is_managed Boolean (Required)


allow_external_modification Boolean

Indicates whether external modification of the code is allowed.


force Boolean

Indicates whether to force the unmanaged access code update.


is_external_modification_allowed Boolean

Indicates whether external modification of the code is allowed.


Response

void

Last updated

Was this helpful?