Skip to main content
Assigns features to a pricing plan. You can add a single feature or multiple features in a batch request. Features that are already assigned to the plan are silently skipped.

Endpoint

Authentication

Authorization
string
required
Bearer token with your API key. Requires read_write permission.

Path Parameters

slug
string
required
The project’s URL-friendly slug identifier.
planId
number
required
The plan’s unique ID.

Body Parameters

You can use either the single-feature format or the batch format.

Single Feature

featureId
number
required
The ID of the feature to assign to the plan.
multiplier
number
Multiplier for the feature (e.g. 3 means 3x the base limit). Defaults to 1.

Batch (Multiple Features)

features
array
Array of feature assignments to add in a single request.

Response

added
number
Number of features newly assigned to the plan.
skipped
number
Number of features skipped because they were already assigned.
features
array
Updated list of all plan-feature associations with full feature details.

Example — Single Feature

Example — Batch Add

In the batch example, feature 101 was already assigned to the plan, so it was skipped (added: 2, skipped: 1).

Errors