POST
/v1/admin/subscription/plansCreate subscription plans
Not yet documented — no summary in the API source.
Requires
Authorization: Bearer sk_...tenant_idRequest body application/json
idstringnullableplanCodestringnullableproductCodestringnullabletierstringnullablenamestringnullabledisplayNamestringnullabledescriptionstringnullablepriceMonthlynumber (double)priceYearlynumber (double)priceBiannualnumber (double)priceQuarterlynumber (double)billingNotesstringnullablecurrencystringnullablefeaturesarray of stringnullablelimitsobjectnullable{key}integer (int32)nullablelimitEnforcementsobjectnullable{key}stringnullableisActivebooleanorderinteger (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"
}'