Delete a runtime
This workflow sample demonstrates how to delete an existing runtime object through the REST API.
You want to delete the runtime with ID E6C5BF4C483FF06313BEE19EAD39978B.
tip
Get the authorization token needed to execute the request with POST /api/auth/login.
Workflow
Delete an existing runtime using DELETE /api/runtimes/{id}
In this step, you are deleting the runtime with ID E6C5BF4C483FF06313BEE19EAD39978B.
Sample Request Header:
"accept": "application/json"
"X-MSTR-AuthToken": "pisu5dkkutqfblaamdomgr00ch"
Request Body: Empty
Sample Curl:
curl -X 'DELETE' \
'https://demo.microstrategy.com/MicroStrategyLibrary/api/runtimes/E6C5BF4C483FF06313BEE19EAD39978B' \
-H 'accept: */*' \
-H 'X-MSTR-AuthToken: pisu5dkkutqfblaamdomgr00ch'
Sample Response Body: Empty
Sample Response Code: 204