action svix_list_integrations_api_v1_app_app_id_integration_get { label: "List Integrations" description: "List the application's integrations." provider: svix method: GET path: "/api/v1/app/{app_id}/integration/" encoding: json input: { type: "object" properties: { app_id: { type: "string" description: "The application's ID or UID" } "idempotency-key": { type: "string" description: "The request's idempotency key" } iterator: { type: "string" } limit: { type: "integer" } } required: ["app_id"] additionalProperties: false } output: { type: "object" required: ["data", "done"] properties: { data: { type: "array" items: { type: "object" required: ["name", "id", "createdAt", "updatedAt"] properties: { createdAt: { type: "string" format: "date-time" } id: { type: "string" } name: { type: "string" } updatedAt: { type: "string" format: "date-time" } } } } done: { type: "boolean" } iterator: { type: "string" } } } }