action svix_list_endpoints_api_v1_app_app_id_endpoint_get { label: "List Endpoints" description: "List the application's endpoints." provider: svix method: GET path: "/api/v1/app/{app_id}/endpoint/" 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" } order: { type: "object" } } required: ["app_id"] additionalProperties: false } output: { type: "object" required: ["data", "done"] properties: { data: { type: "array" items: { type: "object" required: ["url", "version", "id", "createdAt", "updatedAt"] properties: { channels: { type: "array" description: "List of message channels this endpoint listens to (omit for all)" items: { type: "string" } } createdAt: { type: "string" format: "date-time" } description: { type: "string" } disabled: { type: "boolean" } filterTypes: { type: "array" items: { type: "string" } } id: { type: "string" } metadata: { type: "object" } rateLimit: { type: "integer" } uid: { type: "string" description: "Optional unique identifier for the endpoint" } updatedAt: { type: "string" format: "date-time" } url: { type: "string" format: "uri" } version: { type: "integer" } } } } done: { type: "boolean" } iterator: { type: "string" } prevIterator: { type: "string" } } } }