action svix_create_integration_api_v1_app_app_id_integration_post { label: "Create Integration" description: "Create an integration." provider: svix method: POST path: "/api/v1/app/{app_id}/integration/" 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" } name: { type: "string" } } required: ["app_id", "name"] 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" } } } }