back to API list


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 problem
  • summary: Optional - Title of the problem
  • status: 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");
        }
    });
                    

STAY CONNECTED