Developers
Select a pipeline review drop down
Selecting a pipeline review drop down via the API requires a POST request. Note, there is only one drop down value per pipeline.
Pipeline review drop downs are created via the Brainstorm application and are associated with ideas in a pipeline. To retrieve information for pipeline review drop downs via the API, see Pipeline Ideas.
POST parameters
- id - The ID of the pipeline
- ideaId - The ID of the idea
- customFieldId - The ID of the drop down field
- value - The value of the drop down field
this API endpoint also requires valid X-On-Behalf-Of headers. See here for more information.
POST: /api/pipeline/selectDropDownValue
Setting the ContentType
All POST requests to Brainstorm must have the following content type: application/x-www-form-urlencoded
webRequest.ContentType = "application/x-www-form-urlencoded";
Upon successfull request, you will see an ApiSuccessUpdate XML or JSON response.
<ApiSuccessUpdate xmlns="http://schemas.datacontract.org/2004/07/Brainstorm.Model.DTO" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Message xmlns="http://brainstorm.intuit.com">Successfully updated</Message>
<StatusCode xmlns="http://brainstorm.intuit.com">201</StatusCode>
</ApiSuccessUpdate>