Skip to content

Latest commit

 

History

History
102 lines (69 loc) · 4.13 KB

feedback-api.md

File metadata and controls

102 lines (69 loc) · 4.13 KB
title category description tags
Feedback API
API Documentation
API to access Mendix app feedback from within the app
Feedback
Developer Portal
API

1 Introduction

The Mendix Feedback API allows you to retrieve, add and manage feedback for your Mendix projects.

To use the API, you need to set up a Consumed Web Service using the WDSL for this service, available here: Get WSDL. You can find out how to do this in How to Consume a Complex Web Service.

The actions in the feedback API can then be called in a microflow using the Call web service action. This is described in the Studio Pro Guide here: Call Web Service Action.

{{% alert type="info" %}}

Each call also requires the parameters 'username' and 'password'. These are the public credentials you will find below; actual authentication of requests is done through API keys.

  • username: PlatformAPIUser
  • password: PlatformAPIPassword

{{% /alert %}}

2 API Calls

2.1 AcceptFeedback

This call accepts the specified feedback item. This means that the app team has accepted the feedback and added this feedback as a story to the sprint.

Parameter Name Parameter Type Description
ApiKey String The ApiKey the application uses to access the Feedback API for this project.
FeedbackItemID Integer/Long The ID of the Feedback item to be accepted
ProjectID String The ID of the project
  • Return value – Boolean

2.2 AddFeedback

This call adds a new feedback item to the project and returns the ID of the new feedback item.

Parameter Name Parameter Type Description
ApiKey String The ApiKey the application uses to access the Feedback API for this project.
Description String Description of the feedback item. (Optional)
IssueType Enumeration IssueType Type of the feedback item (Question/Idea/Problem)
ProjectID String The ID of the project.
Shortname String The name of the feedback item.
UserEmail String Email address of the user who created the feedback item.
Username String Name of the user who created the feedback item.
  • Return value – Integer/Long

2.3 CloseFeedback

This call closes the specified feedback item.

Parameter Name Parameter Type Description
ApiKey String The ApiKey the application uses to access the Feedback API for this project.
FeedbackItemID Integer/Long The id of the feedback item being closed.
ProjectID String The ID of the project.
Reason String Reason why the feedback item is being closed (Optional)
  • Return value – Enumeration IssueState (see below for possible values)

2.4 DeleteFeedback

This call deletes the specified feedback item.

Parameter Name Parameter Type Description
ApiKey String The ApiKey the application uses to access the Feedback API for this project.
FeedbackItemID Integer/Long The ID of the Feedback item to be deleted
ProjectID String The ID of the project.
  • Return value – Boolean

2.5 GetFeedbackItems

This call retrieves a list of all feedback items for the project which satisfy the IssueState filter.

Parameter Name Parameter Type Description
ApiKey String The ApiKey the application uses to access the Feedback API for this project.
IssueStateFilter Enumeration IssueState State of the Feedback items to be retrieved (Open, Under_review, Accepted, Scheduled, Solved, Rejected; empty returns all feedback for the project).
ProjectID String The ID of the project.
  • Return value – List of Issue

2.6 GetSingleFeedbackItem

This call retrieves a single feedback item by ID.

Parameter Name Parameter Type Description
ApiKey String The ApiKey the application uses to access the Feedback API for this project.
FeedbackItemID Integer/Long The ID of the Feedback item to be retrieved
ProjectID String The ID of the project.
  • Return value – Issue