action daniweb_get_audiences { label: "get_audiences" description: "Fetch all Daniapp audience segments that comprise the current access token's bubble." provider: daniweb method: GET path: "/audiences" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" required: ["id"] properties: { about: { type: "object" properties: { name: { type: "string" } } } id: { type: "number" format: "int32" } } } } pagination: { type: "object" properties: { limit: { type: "number" format: "int32" } offset: { type: "number" format: "int32" } total_records: { type: "number" format: "int32" } } } } } }