API documentation
User
Tenant
Feature
Entitlement
User & permissions
Settings
- Settings
- Media
- Webhook
- Notification
Payment
- Payment Method
- Transaction
- SEPA XML
- Open Banking
- Bank Account Transaction
Customer
- Customer
- Customer Address
- Customer Email
- Customer Settings
- Customer Otp
Billing
- Invoice
- Invoice Position Item
- Billing Run
Dunning
- Dunning Document
- Dunning Rule
Subscription
- Subscription
- Subscription Item
- Subscription Measurement
- Billing Group
Offers
- Offer
- Offer Recipient
- Offer Template
Catalogue
- Unit
- Measurement
- Product
- Product Family
- Price Plan
- Coupon
Checkout
- Checkout Link
- Cart
Accounting
Feature
Get feature
Retrieves a Feature resource.
GET
/
entitlement
/
features
/
{id}
curl -X GET \
/entitlement/features/{id} \
--header "Authorization: Bearer <token>"
{
"id": "feature-1",
"name": "number of users",
"description": "This feature allows you to manage the number of users in your account.",
"status": "active",
"type": "switch",
"config": [
{
"value": "<string>",
"label": "<string>"
}
],
"unit": "<string>",
"productAssignmentsCount": 5,
"productPriceAssignmentsCount": 3,
"entitlementsCount": 15
}
Authorizations
Value for the Authorization header parameter.
Path Parameters
Feature identifier
Response
200
application/json
Feature resource
Get a entitlement feature.
Was this page helpful?
curl -X GET \
/entitlement/features/{id} \
--header "Authorization: Bearer <token>"
{
"id": "feature-1",
"name": "number of users",
"description": "This feature allows you to manage the number of users in your account.",
"status": "active",
"type": "switch",
"config": [
{
"value": "<string>",
"label": "<string>"
}
],
"unit": "<string>",
"productAssignmentsCount": 5,
"productPriceAssignmentsCount": 3,
"entitlementsCount": 15
}
Assistant
Responses are generated using AI and may contain mistakes.