This method updates an idea in the "Share Idea" list based on the provided parameters.
URL
https://api.plupper.com/resources/idea/<id>
Formats
plain text
HTTP Method
PUT
Requires Authentication
HTTP BASIC
API rate limited
No
Parameters
description:Optional - Description of the ideasummary:Optional - Title of the ideastatus:Optional - Status of the idea. Allowed values are: REPORTED, UNDER_REVIEW, IN_PROGRESS, DONE
Response
200 OK
Example queries
- PUT https://api.plupper.com/resources/idea/123
- jQuery example
$.ajax({ type: "PUT", url: "https://api.plupper.com/resources/idea/" + ideaID, username: "john.lennon@example.com", password: "mysecret", data: ({ description: "updated description", status: "DONE" }), success: function() { alert("Updated"); } });