PUT
/v1/admin/subscription/products/{productCode}Update subscription products
Not yet documented — no summary in the API source.
Requires
Authorization: Bearer sk_...tenant_idPath parameters
productCodestringrequiredRequest body application/json
idstringnullableproductCodestringnullabledisplayNamestringnullabledescriptionstringnullableiconUrlstringnullablekeystringnullabledisplayNamestringnullabledescriptionstringnullableunitstringnullabledefaultEnforcementstringnullableorderinteger (int32)availableTiersarray of stringnullableisActivebooleanorderinteger (int32)createdAtstring (date-time)updatedAtstring (date-time)Responses
object ProductDefinition — same shape as the request body.
curl --request PUT \
--url 'https://api.4comply.io/v1/admin/subscription/products/example-code' \
--header 'Authorization: Bearer sk_...' \
--header 'tenant_id: your-tenant-id' \
--header 'Content-Type: application/json' \
--data '{
"id": "00000000-0000-0000-0000-000000000000",
"productCode": "example-code",
"displayName": "Example name",
"description": "Example text",
"iconUrl": "https://example.com",
"limitDefinitions": [
{
"key": "example-key",
"displayName": "Example name",
"description": "Example text",
"unit": "string",
"defaultEnforcement": "string",
"order": 1
}
],
"availableTiers": [
"string"
],
"isActive": true,
"order": 1,
"createdAt": "2026-09-07T12:00:00Z",
"updatedAt": "2026-09-07T12:00:00Z"
}'