action surevoip_get_customers_account_announcements { label: "List of announcement audio files" provider: surevoip method: GET path: "/customers/{account}/announcements" encoding: json input: { type: "object" properties: { account: { type: "integer" } } required: ["account"] additionalProperties: false } output: { type: "object" properties: { list: { type: "array" items: { type: "object" additionalProperties: true } } } } }