Withdraw Specified Request
delete
/iam/governance/selfservice/api/v1/requests/{reqid}
Withdraws the request based on request id.
Request
Supported Media Types
- application/json
Path Parameters
-
reqid(required): string
Request ID
Response
Supported Media Types
- application/json
200 Response
Successful
Headers
-
ResponseTime: string
Captures the time in milliseconds taken for processing the request.
401 Response
Unauthorized
403 Response
Forbidden
404 Response
Resource not found
500 Response
Internal Server Error
Default Response
Unexpected error
Examples
This example demonstrates the ability for the deleting of a single request. The information shown here is against a pseudo system and serves as a prototype.
cURL Example
curl -H "Content-Type: application/json" -H "X-Requested-By: <anyvalue>" -X DELETE -u username:password -d @post.json https://pseudo.com/iam/governance/selfservice/api/v1/requests/4007
Example of DELETE Response Body
The following example shows the contents of the response body in JSON format.
{ "links": [ { "rel": "self", "href": "http://pseudo.com/iam/governance/adminservice/api/v1/requests/4007" } ], "id": "4007", "status": "withdrawn" }