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