back to API list


This method updates a visitor based on the provided parameters.


URL

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

Formats

plain text

HTTP Method

PUT

Requires Authentication

HTTP BASIC

API rate limited

No

Parameters

  • description: Optional - Description of the visitor
  • customerId: Optional - Customer ID

Response

200 OK

Example queries

  • PUT https://api.plupper.com/resources/visitor/123
  • jQuery example
    $.ajax({
        type: "PUT",
        url: "https://api.plupper.com/resources/visitor/" + visitorId,
        data: ({
            customerId: "IBM",
            description: "director from IBM"
        }),
        success: function() {
            alert("Saved");
        }
    });
                    

STAY CONNECTED