Remove an ACS User from a User Identity

Remove a specified ACS user from a specified user identity

Removes a specified ACS user from a specified user identity.

Request

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

Request Body Parameters

ParameterTypeDescription

user_identity_id

String Required

ID of the desired user identity

acs_user_id

String Required

ID of the desired ACS user

Sample Request

curl -X 'POST' \
  'https://connect.getseam.com/user_identities/remove_acs_user' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer ${API_KEY}' \
  -H 'Content-Type: application/json' \
  -d '{
  "user_identity_id": "5c945ab5-c75e-4bcb-8e5f-9410061c401f",
  "acs_user_id": "c0184e54-0d93-4bca-8a4e-47bbd2ee3bfe"
}'

Response

Returns a Boolean ok status indicator.

Sample Response

{
  "ok": true
}

Last updated

Logo

© Seam Labs, Inc. All rights reserved.