Kill a Schedule Action¶
-
PUT/api/v1.2/actions/(int: id)/kill¶
Cancels a running scheduled action. The ID can be obtained by listing the actions using any one of the List Schedule Actions or the List All Actions.
Required Role¶
The following roles can make this API call:
- A user who is part of the system-user/system-admin group.
- A user invoking this API must be part of a group associated with a role that allows killing a schedule action. See Managing Groups and Managing Roles for more information.
Example¶
Goal: Rerun an action with ID ${ACTIONID}
curl -i -X PUT -H "X-AUTH-TOKEN: $AUTH_TOKEN" \
-H "Accept: application/json" \
-H "Content-type: application/json" \
{"status":"kill"} \
"https://api.qubole.com/api/v1.2/actions/${ACTIONID}/kill"
Note
The above syntax uses https://api.qubole.com as the endpoint. Qubole provides other endpoints to access QDS that are described in Supported Qubole Endpoints on Different Cloud Providers.
Response
{"kill_succeeded":"true"}