Retrieve all Wireguard Peers
This endpoint enables retrieving all WireGuard Peers using pagination and optional filters.
To retrieve all the WireGuard Peers, perform a GET
request.
Endpoint
Use a region-specific endpoint to retrieve all WireGuard peers: https://vpn.{region}.ionos.com/wireguardgateways/{gatewayId}/peers
.
Request
curl --location \
--request GET 'https://vpn.de-fra.ionos.com/wireguardgateways/55871672-381f-589c-8809-4ffbecd8b27c/peers?limit=100&offset=0' \
--header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJraWQiO'
Below is the list of optional Path Parameters:
Query Parameters
Type
Description
Example
offset
integer
The first element (of the total list of elements) to include in the response. Use together with limit for pagination. Default: 0
0
limit
integer
The maximum number of elements to return. Use together with offset for pagination. Default: 100
100
Response
200 Successful operation
{
"id": "7c33f158-b93c-5fe7-83c6-84dde2357a33",
"type": "collection",
"href": "/wireguardgateways/{gatewayId}/peers",
"items": [
{
"id": "b62b3a40-adee-5b6c-b98d-be20bfcbdd91",
"type": "wireguardpeer",
"href": "/wireguardgateways/{gatewayId}/peers/b62b3a40-adee-5b6c-b98d-be20bfcbdd91",
"metadata": {
"createdDate": "2020-12-10T13:37:50+01:00",
"createdBy": "ionos:identity:::users/87f9a82e-b28d-49ed-9d04-fba2c0459cd3",
"createdByUserId": "87f9a82e-b28d-49ed-9d04-fba2c0459cd3",
"lastModifiedDate": "2020-12-11T13:37:50+01:00",
"lastModifiedBy": "ionos:identity:::users/87f9a82e-b28d-49ed-9d04-fba2c0459cd3",
"lastModifiedByUserId": "87f9a82e-b28d-49ed-9d04-fba2c0459cd3",
"resourceURN": "ionos:<product>:<location>:<contract>:<resource-path>",
"status": "AVAILABLE",
"statusMessage": null
},
"properties": {
"name": "My Company Gateway Peer",
"description": "Allows local machine A to connect to Datacenter LAN Y.",
"endpoint": {
"host": "198.51.100.0/24",
"port": 51820
},
"allowedIPs": [
"198.51.100.0/24"
],
"publicKey": "no8iaSEoqfbI6PVYsdEiUU5efYdtKX8VAhKity19MWI="
}
}
],
"offset": 0,
"limit": 42,
"_links": {
"prev": "http://PREVIOUS-PAGE-URI",
"self": "http://THIS-PAGE-URI",
"next": "http://NEXT-PAGE-URI"
}
}
Result: All existing WireGuard Peers and their details are successfully obtained.
Last updated
Was this helpful?