action svix_get_integration_api_v1_app_app_id_integration_integ_id_get { label: "Get Integration" description: "Get an integration." provider: svix method: GET path: "/api/v1/app/{app_id}/integration/{integ_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" } integ_id: { type: "string" } } required: ["app_id", "integ_id"] additionalProperties: false } output: { type: "object" required: ["createdAt", "id", "name", "updatedAt"] properties: { createdAt: { type: "string" format: "date-time" } id: { type: "string" } name: { type: "string" } updatedAt: { type: "string" format: "date-time" } } } }