v8

latestOpenAPI 3.0.0Apache 2.0raw.githubusercontent.com2025-10-165266542.4 MB
DigitalOcean-public.v2-new_Partner Network Connect

Retrieve an existing partner attachment

To get the details of a partner attachment, send a GET request to /v2/partner_network_connect/attachments/{pa_id}.

get/v2/partner_network_connect/attachments/{pa_id}

Path parameters

pa_idstring string required

A unique identifier for a partner attachment.

Response

The response will be a JSON object with details about the partner attachment including attached VPC network IDs and BGP configuration information

Example response

{
  "partner_attachment": {
    "id": "5a4981aa-9653-4bd1-bef5-d6bff52042e4",
    "name": "env.prod-partner-network-connect",
    "state": "CREATED",
    "created_at": "2025-03-27T13:03:53Z",
    "connection_bandwidth_in_mbps": 1000,
    "region": "NYC",
    "naas_provider": "MEGAPORT",
    "vpc_ids": [
      "796c6fe3-2a1d-4da2-9f3e-38239827dc91"
    ],
    "bgp": {
      "local_asn": 65000,
      "local_router_ip": "2.2.2.2/29",
      "peer_asn": 65001,
      "peer_router_ip": "3.3.3.3/29"
    }
  }
}