Stigg · Example Payload

Stigg Rest Provision Customer Example

FinOpsPricingBillingEntitlementsUsage-Based BillingFeature FlagsProduct-Led GrowthSubscriptionsSaaSGraphQLREST

Stigg Rest Provision Customer Example is an example object payload from Stigg, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.stigg.io/api/v1/customers",
    "headers": {
      "X-API-KEY": "YOUR_STIGG_API_KEY",
      "Content-Type": "application/json"
    },
    "body": {
      "id": "customer-acme-corp",
      "name": "Acme Corp",
      "email": "billing@acme.com",
      "billingCurrency": "usd"
    }
  },
  "response": {
    "status": 201,
    "body": {
      "data": {
        "id": "customer-acme-corp",
        "name": "Acme Corp",
        "email": "billing@acme.com",
        "billingId": "cus_MIhJJFnJL24HFH",
        "billingCurrency": "usd",
        "metadata": {},
        "integrations": [],
        "defaultPaymentMethod": null,
        "couponId": null,
        "timezone": null,
        "language": "en",
        "createdAt": "2026-06-13T10:00:00.000Z",
        "updatedAt": "2026-06-13T10:00:00.000Z",
        "archivedAt": null
      }
    }
  }
}