List
Get services
client.v1.services.list(RequestOptionsoptions?): servicesarrayServiceListResponse
get/v1/services
Fetches a list of services used by Metronome and the associated IP addresses. IP addresses are not necessarily unique between services. In most cases, IP addresses will appear in the list at least 30 days before they are used for the first time.
Returns
ServiceListResponse
import Metronome from '@metronome/sdk';
const client = new Metronome({
bearerToken: 'My Bearer Token',
});
const services = await client.v1.services.list();
console.log(services.services);
200 Example
{
"services": [
{
"ips": [
"string"
],
"name": "name",
"usage": "makes_connections_from"
}
]
}