DELETE
/
api
/
v0
/
commands
/
rclone
/
cancel sync
curl --request DELETE \
  --url https://console.vast.ai/api/v0/commands/rclone/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "dst_id": 123
}'
{
  "success": true,
  "msg": "Remote copy canceled - check instance status bar for progress updates (~30 seconds delayed)."
}

Authorizations

Authorization
string
header
required

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

Body

application/json
dst_id
integer
required

The destination instance ID of the sync operation to cancel.

Response

Sync operation canceled successfully.

success
boolean
Example:

true

msg
string
Example:

"Remote copy canceled - check instance status bar for progress updates (~30 seconds delayed)."