Delete a User

Delete a specified ACS user

Deletes a specified ACS user and invalidates the ACS user's credentials.

/acs/users/delete

POSThttps://connect.getseam.com/acs/users/delete
Authorization
Body
acs_user_id*string (uuid)
Response

OK

Body
ok*boolean
Request
const response = await fetch('https://connect.getseam.com/acs/users/delete', {
    method: 'POST',
    headers: {
      "Authorization": "Bearer API Token",
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      "acs_user_id": "123e4567-e89b-12d3-a456-426614174000"
    }),
});
const data = await response.json();
Response
{
  "ok": false
}

Request

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

Request Body Parameters

ParameterTypeDescription

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"
)

Response

Returns a Boolean ok status indicator or void.

Sample Response

None

Last updated

Logo

© Seam Labs, Inc. All rights reserved.