Delete User

DELETE https://core.amplitude.com/scim/1/Users/:id

Deletes the Amplitude user with the given ID. The ID must be a valid email, and the user must have been previously invited to Amplitude.
If this action is taken on a pending user (an invited user that hasn't accepted the invitation), the invitation is revoked.

Request Body

{"schemas"=>["urn:ietf:params:scim:schemas:core:2.0:User"], "id"=>"<USER EMAIL>", "userName"=>"<USER EMAIL>", "name"=>{"givenName"=>"<USER GIVEN NAME>", "familyName"=>"<USER FAMILY NAME>"}, "active"=>true, "emails"=>[{"value"=>"<USER EMAIL>", "primary"=>true}], "meta"=>{"resourceType"=>"User"}}