POST/v1/admin/subscription/plans

Create subscription plans

Not yet documented — no summary in the API source.

RequiresAuthorization: Bearer sk_...tenant_id

Request body application/json

idstringnullable
planCodestringnullable
productCodestringnullable
tierstringnullable
namestringnullable
displayNamestringnullable
descriptionstringnullable
priceMonthlynumber (double)
priceYearlynumber (double)
priceBiannualnumber (double)
priceQuarterlynumber (double)
billingNotesstringnullable
currencystringnullable
featuresarray of stringnullable
limitsobjectnullable
{key}integer (int32)nullable
limitEnforcementsobjectnullable
{key}stringnullable
isActiveboolean
orderinteger (int32)
createdAtstring (date-time)
updatedAtstring (date-time)

Responses

object PlanTemplate — same shape as the request body.

curl --request POST \
  --url 'https://api.4comply.io/v1/admin/subscription/plans' \
  --header 'Authorization: Bearer sk_...' \
  --header 'tenant_id: your-tenant-id' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "00000000-0000-0000-0000-000000000000",
  "planCode": "example-code",
  "productCode": "example-code",
  "tier": "string",
  "name": "Example name",
  "displayName": "Example name",
  "description": "Example text",
  "priceMonthly": 0,
  "priceYearly": 0,
  "priceBiannual": 0,
  "priceQuarterly": 0,
  "billingNotes": "string",
  "currency": "USD",
  "features": [
    "string"
  ],
  "limits": {
    "example-limit": 1
  },
  "limitEnforcements": {
    "example-limit": "string"
  },
  "isActive": true,
  "order": 1,
  "createdAt": "2026-09-07T12:00:00Z",
  "updatedAt": "2026-09-07T12:00:00Z"
}'