/user/api/v1/servicePoints/{id}/anycast (GET) - BlueCat Edge - Service Point v4.x.x

BlueCat Edge User Guide

Locale
English
Product name
BlueCat Edge
Version
Service Point v4.x.x

Retrieve the Anycast configuration information for a specified Service Point v4 instance.

Request: GET https://<us|eu>.fleet.bluec.at/user/api/v1/servicePoints/{id}/anycast
Authorization: Bearer token

Path parameter

Name Description Type Required/Optional
id The Service Point v4 ID Integer Required

Successful response

200 OK
{
  "enabled": true,
  "addresses": [
    {
      "ipAddress": "string",
      "inUseByAppId": "string",
      "isUp": true
    }
  ],
  "configuration": "string"
}
Where the parameters represent the following:
  • enabled—indicates whether Anycast is configured
  • addresses—a list of Anycast IP addresses. The list includes the following information:
    • ipAddress—the IPv4 or IPv6 Anycast IP address
    • interfaceName—the interface configured with the Anycast IP address
    • isUseByAppId—the ID of the application using the Anycast IP address
    • isUp—indicates whether the Anycast IP address is up
  • configuration—the contents of the FRRouting configuration file
Possible error codes
  • 404 Service point not found
  • 500 Internal Server Error