v8

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

Create a New Reserved IPv6

On creation, a reserved IPv6 must be reserved to a region.

  • To create a new reserved IPv6 reserved to a region, send a POST request to /v2/reserved_ipv6 with the region_slug attribute.
post/v2/reserved_ipv6

Request body

region_slugstring required

The slug identifier for the region the reserved IPv6 will be reserved to.

Example request

{
  "region_slug": "nyc3"
}

Response

The response will be a JSON object with key reserved_ipv6. The value of this will be an object that contains the standard attributes associated with a reserved IPv6.

Example response

{
  "reserved_ipv6": {
    "ip": "2409:40d0:f7:1017:74b4:3a96:105e:4c6e",
    "region_slug": "nyc3",
    "reserved_at": "2024-11-20T11:08:30Z"
  }
}