action svix_create_application_api_v1_app_post { label: "Create Application" description: "Create a new application." provider: svix method: POST path: "/api/v1/app/" encoding: json input: { type: "object" properties: { get_if_exists: { type: "boolean" description: "Get an existing application, or create a new one if doesn't exist. It's two separate functions in the libs." } "idempotency-key": { type: "string" description: "The request's idempotency key" } metadata: { type: "object" } name: { type: "string" } rateLimit: { type: "integer" } uid: { type: "string" description: "Optional unique identifier for the application" } } required: ["name"] 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" } } } }