Delete a User Identity
POST /user_identities/delete ⇒ void
Deletes a specified user identity. To delete a user identity, you must first delete any ACS credentials and enrollment automations associated with the user identity. You must also deactivate any associated phones.
Request
await seam.userIdentities.delete({
user_identity_id: "44d48b20-0dbe-419d-91ca-ab8bceecd135",
});
Response
// void
Authentication Methods
API key
Personal access token Must also include the
seam-workspace
header in the request.
Request Parameters
user_identity_id
user_identity_id
Type: string
Required: Yes
ID of the desired user identity.
Return Type
void
Last updated
Was this helpful?