action svix_get_integration_key_api_v1_app_app_id_integration_integ_id_key_g { label: "Get Integration Key" description: "Get an integration's key." provider: svix method: GET path: "/api/v1/app/{app_id}/integration/{integ_id}/key/" 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: ["key"] properties: { key: { type: "string" } } } }