DELETE
/
api
/
v0
/
machines
/
{machine_id}
/
defjob
remove defjob
curl --request DELETE \
  --url https://console.vast.ai/api/v0/machines/{machine_id}/defjob \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "machine_id": 12345,
  "user_id": 67890
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

machine_id
integer
required

ID of the machine to remove the default job from.

Example:

12345

Response

Success response

success
boolean
Example:

true

machine_id
integer
Example:

12345

user_id
integer
Example:

67890