POST/v1/admin/subscription/addons

Create subscription addons

Not yet documented — no summary in the API source.

RequiresAuthorization: Bearer sk_...tenant_id

Request body application/json

idstringnullable
codestringnullable
namestringnullable
displayNamestringnullable
descriptionstringnullable
priceMonthlynumber (double)
priceYearlynumber (double)
currencystringnullable
enabledModulesarray of stringnullable
enabledFeaturesobjectnullable
{key}array of stringnullable
isActiveboolean
createdAtstring (date-time)
updatedAtstring (date-time)

Responses

object Addon — same shape as the request body.

curl --request POST \
  --url 'https://api.4comply.io/v1/admin/subscription/addons' \
  --header 'Authorization: Bearer sk_...' \
  --header 'tenant_id: your-tenant-id' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "00000000-0000-0000-0000-000000000000",
  "code": "example-code",
  "name": "Example name",
  "displayName": "Example name",
  "description": "Example text",
  "priceMonthly": 0,
  "priceYearly": 0,
  "currency": "USD",
  "enabledModules": [
    "string"
  ],
  "enabledFeatures": {
    "key": [
      "string"
    ]
  },
  "isActive": true,
  "createdAt": "2026-09-07T12:00:00Z",
  "updatedAt": "2026-09-07T12:00:00Z"
}'