POST
/v1/admin/subscription/addonsCreate subscription addons
Not yet documented — no summary in the API source.
Requires
Authorization: Bearer sk_...tenant_idRequest body application/json
idstringnullablecodestringnullablenamestringnullabledisplayNamestringnullabledescriptionstringnullablepriceMonthlynumber (double)priceYearlynumber (double)currencystringnullableenabledModulesarray of stringnullableenabledFeaturesobjectnullable{key}array of stringnullableisActivebooleancreatedAtstring (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"
}'