Delete a User Identity
Deletes a specified user identity. This deletes the user identity and all associated resources, including any credentials, acs users and client sessions.
Deletes a specified user identity.
Code:
await seam.userIdentities.delete({
user_identity_id: "7ad2566e-6fd8-466d-b8e4-c10a14a74fd3",
});Output:
// voidDeletes a specified user identity.
Code:
curl --include --request POST "https://connect.getseam.com/user_identities/delete" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"user_identity_id": "7ad2566e-6fd8-466d-b8e4-c10a14a74fd3"
}
EOFOutput:
{}Deletes a specified user identity.
Code:
seam.user_identities.delete(user_identity_id="7ad2566e-6fd8-466d-b8e4-c10a14a74fd3")Output:
NoneDeletes a specified user identity.
Code:
seam.user_identities.delete(user_identity_id: "7ad2566e-6fd8-466d-b8e4-c10a14a74fd3")Output:
nilDeletes a specified user identity.
Code:
$seam->user_identities->delete(
user_identity_id: "7ad2566e-6fd8-466d-b8e4-c10a14a74fd3"
);Output:
Deletes a specified user identity.
Code:
seam user-identities delete --user_identity_id "7ad2566e-6fd8-466d-b8e4-c10a14a74fd3"Output:
{}Request Parameters
user_identity_id String (Required)
ID of the user identity that you want to delete.
Response
void
Last updated
Was this helpful?

