Reach: Profiles

List plan feature access

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.

get/api/reach/v1/profiles/{profileUuid}/features

Path parameters

profileUuidstring required
Example:550e8400-e09b-41d4-a716-400055000000

Profile uuid parameter

Response

Success response

feature'AutomationActivation' | 'SmartSending' | 'AiGenerateSubjectLines' | 'TemplateCheckerAnalysis' | 'RemoveSignature' | 'Collaborators' | 'HtmlCodeEditor'
is_availableboolean

Whether the feature can be used right now.

is_lockedboolean

Whether the feature sits outside the base plan and needs an upgrade.

Example response

[
  {
    "feature": "AutomationActivation",
    "is_available": true
  }
]

Changes