DigitalOcean-public.v2-new_Partner Network Connect
List remote routes for a partner attachment
To list all remote routes associated with a partner attachment, send a GET request to /v2/partner_network_connect/attachments/{pa_id}/remote_routes.
get/v2/partner_network_connect/attachments/{pa_id}/remote_routes
Path parameters
pa_idstring string required
A unique identifier for a partner attachment.
Query parameters
per_pageinteger
Number of items returned per page
pageinteger
Which 'page' of paginated results to return.
Response
The response will be a JSON object with a remote_routes array containing information on all the remote routes associated with the partner attachment
Example response
{
"remote_routes": [
{
"cidr": "10.10.10.0/24"
},
{
"cidr": "10.10.10.10/24"
}
],
"links": {},
"meta": {
"total": 2
}
}