action files_get_site_ip_addresses { label: "List IP Addresses associated with the current site" description: "List IP Addresses associated with the current site" provider: files method: GET path: "/site/ip_addresses" encoding: json input: { type: "object" properties: { cursor: { type: "string" } per_page: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "List IP Addresses associated with the current site" properties: { associated_with: { type: "string" description: "The object that this public IP address list is associated with." } group_id: { type: "integer" format: "int32" description: "Group ID" } id: { type: "string" description: "Unique label for list; used by Zapier and other integrations." } ip_addresses: { type: "array" description: "A list of IP addresses." items: { type: "string" } } } } } }