PUT/v1/admin/subscription/products/{productCode}

Update subscription products

Not yet documented — no summary in the API source.

RequiresAuthorization: Bearer sk_...tenant_id

Path parameters

productCodestringrequired

Request body application/json

idstringnullable
productCodestringnullable
displayNamestringnullable
descriptionstringnullable
iconUrlstringnullable
limitDefinitionsarray of objectLimitDefinitionnullable
keystringnullable
displayNamestringnullable
descriptionstringnullable
unitstringnullable
defaultEnforcementstringnullable
orderinteger (int32)
availableTiersarray of stringnullable
isActiveboolean
orderinteger (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"
}'