action svix_get_endpoint_stats_api_v1_app_app_id_endpoint_endpoint_id_stats { label: "Get Endpoint Stats" description: "Get basic statistics for the endpoint." provider: svix method: GET path: "/api/v1/app/{app_id}/endpoint/{endpoint_id}/stats/" encoding: json input: { type: "object" properties: { app_id: { type: "string" description: "The application's ID or UID" } endpoint_id: { type: "string" description: "The endpoint's ID or UID" } "idempotency-key": { type: "string" description: "The request's idempotency key" } since: { type: "string" format: "date-time" } until: { type: "string" format: "date-time" } } required: ["app_id", "endpoint_id"] additionalProperties: false } output: { type: "object" required: ["fail", "pending", "sending", "success"] properties: { fail: { type: "integer" } pending: { type: "integer" } sending: { type: "integer" } success: { type: "integer" } } } }