Unsuspend a User

Unsuspend a specified ACS user

Unsuspends a specified suspended ACS user. While suspending an ACS user revokes their access temporarily, unsuspending the ACS user restores their access.

/acs/users/unsuspend

post

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.

Authorizations
Body
acs_user_idstring ยท uuidOptional

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_idstring ยท uuidOptional

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.

acs_system_idstring ยท uuidOptional

ID of the access system of the user that you want to unsuspend. You can only provide acs_system_id with user_identity_id.

Responses
200
OK
application/json
post
POST /acs/users/unsuspend HTTP/1.1
Host: connect.getseam.com
Authorization: Bearer API Key
Content-Type: application/json
Accept: */*
Content-Length: 167

{
  "acs_user_id": "123e4567-e89b-12d3-a456-426614174000",
  "user_identity_id": "123e4567-e89b-12d3-a456-426614174000",
  "acs_system_id": "123e4567-e89b-12d3-a456-426614174000"
}
{
  "ok": true
}

Request

Specify the desired ACS user by including the corresponding acs_user_id in the request body.

Request Body Parameters

Parameter
Type
Description

acs_user_id

String (UUID) Required

ID of the desired ACS user

Sample Request

seam.acs.users.unsuspend(
  acs_user_id="33333333-3333-3333-3333-333333333333"
)

Response

Returns a Boolean ok status indicator or void.

Sample Response

None

Last updated

Was this helpful?

Revision created

Merge branch 'main' into beta