Svix · Example Payload

Svix Application Create Example

Create a new Svix application (typically one per tenant/customer on your platform).

WebhooksWebhooks As A ServiceWebhook DeliveryWebhook SendingEvent DrivenEventingMessagingPub SubStreamingIngestIntegrationReliabilityRetriesDeliverabilitySigningVerificationHMACStandard WebhooksMulti TenantMulti RegionEnterpriseSaaSDeveloper PlatformAPIRESTSOC 2HIPAAPCI DSSGDPROpen SourceRustPolyglot SDKTerraformCLI

Svix Application Create Example is an example object payload from Svix, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationsummarydescriptionrequestresponse

Example Payload

Raw ↑
{
  "operation": "POST /api/v1/app",
  "summary": "Create Application",
  "description": "Create a new Svix application (typically one per tenant/customer on your platform).",
  "request": {
    "method": "POST",
    "url": "https://api.us.svix.com/api/v1/app",
    "headers": {
      "Authorization": "Bearer testsk_xxxxxxxxxxxxxxxxxxxxxxxxxx",
      "Content-Type": "application/json",
      "Idempotency-Key": "f3a7b6e2-1234-4abc-9def-0123456789ab"
    },
    "body": {
      "name": "Acme Corp",
      "uid": "tenant_acme_corp",
      "metadata": {
        "plan": "enterprise",
        "region": "us-east-1"
      },
      "throttleRate": 100
    }
  },
  "response": {
    "status": 201,
    "body": {
      "id": "app_1srOrx2ZWZBpBUvZwXKQmoEYga2",
      "uid": "tenant_acme_corp",
      "name": "Acme Corp",
      "metadata": {
        "plan": "enterprise",
        "region": "us-east-1"
      },
      "throttleRate": 100,
      "createdAt": "2026-05-22T15:30:00Z",
      "updatedAt": "2026-05-22T15:30:00Z"
    }
  }
}