DigitalOcean-public.v2-new_Partner Network Connect
Update an existing partner attachment
To update an existing partner attachment, send a PATCH request to /v2/partner_network_connect/attachments/{pa_id} with a JSON object containing the fields to be updated.
patch/v2/partner_network_connect/attachments/{pa_id}
Path parameters
pa_idstring string required
A unique identifier for a partner attachment.
Request body
Example request
{
"name": "env.prod-partner-network-connect"
}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"
}
}
}