Overview#
SCIM Delete Request is a SCIM Resource Operation to Delete a SCIM ResourceSCIM Delete Request is performed using a URL endpoint similar to:DELETE https://example.com/{v}/{resource}/{id}
SCIM Delete Request Example#
To delete a SCIM Resource, send an HTTP DELETE request to the resource's respective end point. In the example below we see the DELETE of a User.DELETE /Users/2819c223-7f76-453a-919d-413861904646 Host: example.com Authorization: Bearer h480djs93hd8 ETag: W/"c310cd84f0281b7"
The response to a DELETE:
HTTP/1.1 200 OKwhere Consumer attempt to retrieve the previously deleted User
GET /Users/2819c223-7f76-453a-919d-413861904646 Host: example.com Authorization: Bearer h480djs93hd8
Response for the previously deleted User
HTTP/1.1 404 NOT FOUND { "Errors":[ { "description":"Resource 2819c223-7f76-453a-919d-413861904646 not found", "code":"404" } ] }