Unsuspend an ACS User
Unsuspends a specified suspended access system user. While suspending an access system user revokes their access temporarily, unsuspending the access system user restores their access.
Unsuspends a specified suspended access system user, using the associated user identity.
Code:
await seam.acs.users.unsuspend({
user_identity_id: "6a42fbcf-da1a-40f8-8221-596774f97537",
acs_system_id: "264ea3f9-e483-469e-aada-c98c094d5521",
});Output:
// voidUnsuspends a specified suspended access system user, using the associated user identity.
Code:
curl --include --request POST "https://connect.getseam.com/acs/users/unsuspend" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"user_identity_id": "6a42fbcf-da1a-40f8-8221-596774f97537",
"acs_system_id": "264ea3f9-e483-469e-aada-c98c094d5521"
}
EOFOutput:
{}Unsuspends a specified suspended access system user, using the associated user identity.
Code:
seam.acs.users.unsuspend(
user_identity_id="6a42fbcf-da1a-40f8-8221-596774f97537",
acs_system_id="264ea3f9-e483-469e-aada-c98c094d5521",
)Output:
NoneUnsuspends a specified suspended access system user, using the associated user identity.
Code:
seam.acs.users.unsuspend(
user_identity_id: "6a42fbcf-da1a-40f8-8221-596774f97537",
acs_system_id: "264ea3f9-e483-469e-aada-c98c094d5521",
)Output:
nilUnsuspends a specified suspended access system user, using the associated user identity.
Code:
$seam->acs->users->unsuspend(
user_identity_id: "6a42fbcf-da1a-40f8-8221-596774f97537",
acs_system_id: "264ea3f9-e483-469e-aada-c98c094d5521"
);Output:
Unsuspends a specified suspended access system user, using the associated user identity.
Code:
seam acs users unsuspend --user_identity_id "6a42fbcf-da1a-40f8-8221-596774f97537" --acs_system_id "264ea3f9-e483-469e-aada-c98c094d5521"Output:
{}Request Parameters
acs_system_id String
ID of the access system of the user that you want to unsuspend. You can only provide acs_system_id with user_identity_id.
acs_user_id String
ID of the access system user that you want to unsuspend. You can only provide acs_user_id or the combination of acs_system_id and user_identity_id.
user_identity_id String
ID of the user identity that you want to unsuspend. You can only provide acs_user_id or the combination of acs_system_id and user_identity_id.
Response
void
Examples
Unsuspend an access system user
Unsuspends a specified suspended access system user.
Code:
await seam.acs.users.unsuspend({
acs_user_id: "56dd7042-4134-4788-9212-53f25f2939e1",
});Output:
// voidCode:
curl --include --request POST "https://connect.getseam.com/acs/users/unsuspend" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"acs_user_id": "56dd7042-4134-4788-9212-53f25f2939e1"
}
EOFOutput:
{}Code:
seam.acs.users.unsuspend(acs_user_id="56dd7042-4134-4788-9212-53f25f2939e1")Output:
NoneCode:
seam.acs.users.unsuspend(acs_user_id: "56dd7042-4134-4788-9212-53f25f2939e1")Output:
nilCode:
$seam->acs->users->unsuspend(
acs_user_id: "56dd7042-4134-4788-9212-53f25f2939e1"
);Output:
Code:
seam acs users unsuspend --acs_user_id "56dd7042-4134-4788-9212-53f25f2939e1"Output:
{}Last updated
Was this helpful?

