Delete a User
Delete a specified ACS user
Deletes a specified ACS user and invalidates the ACS user's credentials.
Deletes a specified access system user and invalidates the access system user's credentials.
ID of the access system user that you want to delete. You must provide either acs_user_id or user_identity_id
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.
ID of the access system that you want to delete. You must provide acs_system_id with user_identity_id.
OK
Bad Request
Unauthorized
POST /acs/users/delete HTTP/1.1
Host: connect.getseam.com
Authorization: Bearer YOUR_SECRET_TOKEN
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
acs_user_id
String (UUID) Required
ID of the desired ACS user
Sample Request
seam.acs.users.delete(
acs_user_id="33333333-3333-3333-3333-333333333333"
)curl -X 'POST' \
'https://connect.getseam.com/acs/users/delete' \
-H 'accept: application/json' \
-H "Authorization: Bearer ${API_KEY}" \
-H 'Content-Type: application/json' \
-d '{
"acs_user_id": "33333333-3333-3333-3333-333333333333"
}'await seam.acs.users.delete({
acs_user_id: "33333333-3333-3333-3333-333333333333"
});# Coming soon!$seam->acs->users->delete(
acs_user_id: "33333333-3333-3333-3333-333333333333"
);seam.UsersAcs.Delete(
acsUserId: "33333333-3333-3333-3333-333333333333"
);// Coming soon!deletion, uErr := client.Acs.Users.Delete(
context.Background(), &acs.UsersDeleteRequest{
AcsUserId: "33333333-3333-3333-3333-333333333333",
},
)Response
Returns a Boolean ok status indicator or void.
Sample Response
None{
"ok": true
}void# Coming soon!voidvoid// Coming soon!{
"ok": true
}Last updated
Was this helpful?

