Delete an ACS User
Deletes a specified access system user and invalidates the access system user's credentials.
Deletes a specified access system user and invalidates the access system user's credentials.
Code:
await seam.acs.users.delete({
user_identity_id: "586c225c-b05c-4af4-8679-9c8a46066cce",
acs_system_id: "1c655fbd-ecd7-49fc-a57e-b6fb67bd8d64",
});Output:
// voidDeletes a specified access system user and invalidates the access system user's credentials.
Code:
curl --include --request POST "https://connect.getseam.com/acs/users/delete" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"user_identity_id": "586c225c-b05c-4af4-8679-9c8a46066cce",
"acs_system_id": "1c655fbd-ecd7-49fc-a57e-b6fb67bd8d64"
}
EOFOutput:
{}Deletes a specified access system user and invalidates the access system user's credentials.
Code:
seam.acs.users.delete(
user_identity_id="586c225c-b05c-4af4-8679-9c8a46066cce",
acs_system_id="1c655fbd-ecd7-49fc-a57e-b6fb67bd8d64",
)Output:
NoneDeletes a specified access system user and invalidates the access system user's credentials.
Code:
seam.acs.users.delete(
user_identity_id: "586c225c-b05c-4af4-8679-9c8a46066cce",
acs_system_id: "1c655fbd-ecd7-49fc-a57e-b6fb67bd8d64",
)Output:
nilDeletes a specified access system user and invalidates the access system user's credentials.
Code:
$seam->acs->users->delete(
user_identity_id: "586c225c-b05c-4af4-8679-9c8a46066cce",
acs_system_id: "1c655fbd-ecd7-49fc-a57e-b6fb67bd8d64"
);Output:
Deletes a specified access system user and invalidates the access system user's credentials.
Code:
seam acs users delete --user_identity_id "586c225c-b05c-4af4-8679-9c8a46066cce" --acs_system_id "1c655fbd-ecd7-49fc-a57e-b6fb67bd8d64"Output:
{}Request Parameters
acs_system_id String
ID of the access system that you want to delete. You must provide acs_system_id with user_identity_id.
acs_user_id String
ID of the access system user that you want to delete. You must provide either acs_user_id or user_identity_id
user_identity_id String
ID of the user identity that you want to delete. You must provide either acs_user_id or user_identity_id. If you provide user_identity_id, you must also provide acs_system_id.
Response
void
Examples
Delete an access system user
Deletes a specified access system user and invalidates the access system user's credentials.
Code:
await seam.acs.users.delete({
acs_user_id: "8d483a94-5cbc-425a-a6ee-bd9825820c26",
});Output:
// voidCode:
curl --include --request POST "https://connect.getseam.com/acs/users/delete" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"acs_user_id": "8d483a94-5cbc-425a-a6ee-bd9825820c26"
}
EOFOutput:
{}Code:
seam.acs.users.delete(acs_user_id="8d483a94-5cbc-425a-a6ee-bd9825820c26")Output:
NoneCode:
seam.acs.users.delete(acs_user_id: "8d483a94-5cbc-425a-a6ee-bd9825820c26")Output:
nilCode:
$seam->acs->users->delete(acs_user_id: "8d483a94-5cbc-425a-a6ee-bd9825820c26");Output:
Code:
seam acs users delete --acs_user_id "8d483a94-5cbc-425a-a6ee-bd9825820c26"Output:
{}Last updated
Was this helpful?

