Unassign a Credential from an ACS User
Unassigns a specified credential from a specified access system user.
Unassigns a specified credential from a specified access system user, using the associated user identity ID.
Code
await seam.acs.credentials.unassign({
user_identity_id: "417e9370-d2cc-4b23-b6d5-fbf7fdbda354",
acs_credential_id: "b1833efd-0669-4a88-81b5-2f2d5fd5c02f",
});
Output
// void
Request Parameters
acs_credential_id
String (Required)
ID of the credential that you want to unassign from an access system user.
acs_user_id
String
ID of the access system user from which you want to unassign a credential. You can only provide one of acs_user_id or user_identity_id.
user_identity_id
String
ID of the user identity from which you want to unassign a credential. You can only provide one of acs_user_id or user_identity_id.
Response
void
Examples
Unassign a credential from an access system user
Unassigns a specified credential from a specified access system user.
Code
await seam.acs.credentials.unassign({
acs_user_id: "ae76d550-f2e0-4f61-9380-a64d276f9904",
acs_credential_id: "b1833efd-0669-4a88-81b5-2f2d5fd5c02f",
});
Output
// void
Last updated
Was this helpful?