All URIs are relative to https://api.datadoghq.com
| Method | HTTP request | Description |
|---|---|---|
| getIPRanges | GET / | List IP Ranges |
IPRanges getIPRanges()
Get information about Datadog IP ranges.
import { v1 } from "@datadog/datadog-api-client";
import * as fs from "fs";
const configuration = v1.createConfiguration();
const apiInstance = new v1.IPRangesApi(configuration);
apiInstance
.getIPRanges()
.then((data: any) => {
console.log(
"API called successfully. Returned data: " + JSON.stringify(data)
);
})
.catch((error: any) => console.error(error));This endpoint does not need any parameter.
IPRanges
No authorization required
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | OK | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]