back to API list


This method updates an FAQ record based on the provided parameters.


URL

https://api.plupper.com/resources/faq/<id>

Formats

plain text

HTTP Method

PUT

Requires Authentication

HTTP BASIC

API rate limited

No

Parameters

  • question: Optional - String containing the question
  • answer: Optional - String containing the answer

Response

200 OK

Example queries

  • PUT https://api.plupper.com/resources/faq/123
  • jQuery example
    $.ajax({
        type: "PUT",
        url: "https://api.plupper.com/resources/faq/" + faqID,
        username: "john.lennon@example.com",
        password: "mysecret",
        data: ({
            question: "Updated question",
            answer: "Updated Answer to this common question"
        }),
        success: function() {
            alert("Updated");
        }
    });
                    

STAY CONNECTED