v8

latestOpenAPI 3.0.0Apache 2.0raw.githubusercontent.com2025-10-165266542.4 MB
DigitalOcean-public.v2-new_Droplets

Check Status of a Droplet Destroy with Associated Resources Request

To check on the status of a request to destroy a Droplet with its associated resources, send a GET request to the /v2/droplets/$DROPLET_ID/destroy_with_associated_resources/status endpoint.

get/v2/droplets/{droplet_id}/destroy_with_associated_resources/status

Path parameters

droplet_idinteger required

A unique identifier for a Droplet instance.

Response

A JSON object containing containing the status of a request to destroy a Droplet and its associated resources.

completed_atstring date-time

A time value given in ISO8601 combined date and time format indicating when the requested action was completed.

failuresinteger

A count of the associated resources that failed to be destroyed, if any.

Example response

{
  "droplet": {
    "id": "61486916",
    "name": "ubuntu-s-1vcpu-1gb-nyc1-01-1585758823330",
    "destroyed_at": "2020-04-01T18:11:49Z",
    "error_message": " "
  },
  "resources": {
    "reserved_ips": [
      {
        "id": "61486916",
        "name": "ubuntu-s-1vcpu-1gb-nyc1-01-1585758823330",
        "destroyed_at": "2020-04-01T18:11:49Z",
        "error_message": " "
      }
    ],
    "floating_ips": [
      {
        "id": "61486916",
        "name": "ubuntu-s-1vcpu-1gb-nyc1-01-1585758823330",
        "destroyed_at": "2020-04-01T18:11:49Z",
        "error_message": " "
      }
    ],
    "snapshots": [
      {
        "id": "61486916",
        "name": "ubuntu-s-1vcpu-1gb-nyc1-01-1585758823330",
        "destroyed_at": "2020-04-01T18:11:49Z",
        "error_message": " "
      }
    ],
    "volumes": [
      {
        "id": "61486916",
        "name": "ubuntu-s-1vcpu-1gb-nyc1-01-1585758823330",
        "destroyed_at": "2020-04-01T18:11:49Z",
        "error_message": " "
      }
    ],
    "volume_snapshots": [
      {
        "id": "61486916",
        "name": "ubuntu-s-1vcpu-1gb-nyc1-01-1585758823330",
        "destroyed_at": "2020-04-01T18:11:49Z",
        "error_message": " "
      }
    ]
  },
  "completed_at": "2020-04-01T18:11:49Z"
}