action svix_list_applications_api_v1_app_get { label: "List Applications" description: "List of all the organization's applications." provider: svix method: GET path: "/api/v1/app/" encoding: json input: { type: "object" properties: { "idempotency-key": { type: "string" description: "The request's idempotency key" } iterator: { type: "string" } limit: { type: "integer" } order: { type: "object" } } 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" } metadata: { type: "object" } name: { type: "string" } rateLimit: { type: "integer" } uid: { type: "string" description: "Optional unique identifier for the application" } updatedAt: { type: "string" format: "date-time" } } } } done: { type: "boolean" } iterator: { type: "string" } prevIterator: { type: "string" } } } }