List plan feature access
List which plan features the profile can use.
List which plan features the profile can use.
This is the feature lock matrix, not a usage quota. available means the feature can be
used right now and locked means it is not part of the base plan, so an upgrade is needed.
For remaining emails, recipients and AI credits use the limits endpoint instead.
Worth checking before building something that cannot be activated afterwards, such as an automation on a plan without automation activation.
Authorizations
AuthorizationstringRequired
API Token authentication
Path parameters
profileUuidstringRequiredExample:
Profile uuid parameter
550e8400-e09b-41d4-a716-400055000000Responses
200
Success response
application/json
featurestring · enumOptionalExample:
AutomationActivationPossible values: is_availablebooleanOptionalExample:
Whether the feature can be used right now.
trueis_lockedbooleanOptionalExample:
Whether the feature sits outside the base plan and needs an upgrade.
false401
Unauthenticated response
application/json
500
Error response
application/json
get/api/reach/v1/profiles/{profileUuid}/features
GET /api/reach/v1/profiles/{profileUuid}/features HTTP/1.1
Host: developers.hostinger.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"feature": "AutomationActivation",
"is_available": true,
"is_locked": false
}
]Last updated
Was this helpful?