action daniweb_get_audiences_id { label: "get_audiences_ID" description: "Fetch an array of Daniapp audience segments that comprise the current access token's bubble." provider: daniweb method: GET path: "/audiences/{ID}" encoding: json input: { type: "object" properties: { ID: { type: "array" items: { type: "integer" format: "int32" } } } required: ["ID"] 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" } } } } } } }