Delete an Instance Group

delete

/api/v2/instance_groups/{id}/

Make a DELETE request to this resource to delete this instance group.

Request

Supported Media Types
Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

204 Response

403 Response

Body
Example Response (application/json)
{
    "detail":"Isolated Groups can not be removed from the API"
}

409 Response

Body
Example Response (application/json)
{
    "active_jobs":[
        {
            "id":1,
            "type":"job"
        },
        {
            "id":2,
            "type":"job"
        },
        {
            "id":3,
            "type":"project_update"
        },
        {
            "id":4,
            "type":"project_update"
        }
    ],
    "error":"Resource is being used by running jobs."
}
Back to Top