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:
// voidUnassigns a specified credential from a specified access system user, using the associated user identity ID.
Code:
curl --include --request POST "https://connect.getseam.com/acs/credentials/unassign" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"user_identity_id": "417e9370-d2cc-4b23-b6d5-fbf7fdbda354",
"acs_credential_id": "b1833efd-0669-4a88-81b5-2f2d5fd5c02f"
}
EOFOutput:
{}Unassigns a specified credential from a specified access system user, using the associated user identity ID.
Code:
Output:
Unassigns a specified credential from a specified access system user, using the associated user identity ID.
Code:
Output:
Unassigns a specified credential from a specified access system user, using the associated user identity ID.
Code:
Output:
Unassigns a specified credential from a specified access system user, using the associated user identity ID.
Code:
Output:
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
Returns: void
Examples
Unassign a credential from an access system user
Unassigns a specified credential from a specified access system user.
Code:
Output:
Code:
Output:
Code:
Output:
Code:
Output:
Code:
Output:
Code:
Output:
Last updated
Was this helpful?

