DELETE
/
api
/
v0
/
machines
/
{machine_id}
/
asks
unlist machine
curl --request DELETE \
  --url https://console.vast.ai/api/v0/machines/{machine_id}/asks \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "machine_id": 123,
  "user_id": 456
}

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

The ID of the machine to unlist.

Response

Success response

success
boolean
Example:

true

machine_id
integer
Example:

123

user_id
integer
Example:

456