Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 869 Bytes

PublicIpListApi.md

File metadata and controls

46 lines (31 loc) · 869 Bytes

Fastly.PublicIpListApi

const apiInstance = new Fastly.PublicIpListApi();

Methods

Note

All URIs are relative to https://api.fastly.com

Method HTTP request Description
listFastlyIps GET /public-ip-list List Fastly's public IPs

listFastlyIps

listFastlyIps()

List the public IP addresses for the Fastly network.

Example

apiInstance.listFastlyIps()
  .then((data) => {
    console.log(data, "API called successfully.");
  })
  .catch((error) => {
    console.error(error);
  });

Options

This endpoint does not need any parameters.

Return type

PublicIpList

[Back to top] [Back to API list] [Back to README]