HomeDocumentationAPI Reference
Getting StartedAPI ReferenceBug ReportingCrash ReportingAPMHelp Center

Feature Request Content for Cordova

This page covers the content found in a feature request for your Cordova apps.

Users can add new feature requests or comment on existing ones.

All the fields that users can complete as well as the APIs to make their emails optional can be found below.

Add New Feature Fields

When submitting a new feature request, users must fill out four fields.

  • Title
  • Description
  • Name
  • Email
1041

This is what the in-app feature request submission form looks like.

Setting the Email Field as Optional

By default, a user's email address is required to submit a new feature request. You can make it optional using the following API.

FeatureRequests.setEmailFieldRequired(
  true, 
  [FeatureRequests.actionTypes.requestNewFeature]
);

Feature Request Comments Fields

When adding a comment to an already existing feature request, users must fill out three fields:

  • Comment
  • Name
  • Email
1041

This is what the in-app feature request comment submission form looks like.

Setting the Email Field as Optional

By default, a user's email address is required to submit a new comment on a feature request. You can make it optional using the following API.

FeatureRequests.setEmailFieldRequired(
  false, 
  [FeatureRequests.actionTypes.addCommentToFeature]
);

What’s Next

Identifying your users can help eliminate the need for them to enter their email and name when submitting feature requests or bug reports.