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