action svix_get_endpoint_api_v1_app_app_id_endpoint_endpoint_id_get { label: "Get Endpoint" description: "Get an application." provider: svix method: GET path: "/api/v1/app/{app_id}/endpoint/{endpoint_id}/" 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" } } required: ["app_id", "endpoint_id"] additionalProperties: false } output: { type: "object" required: ["createdAt", "id", "updatedAt", "url", "version"] 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" } } } }