This method updates your account based on the provided properties.
URL
https://api.plupper.com/resources/provider/<providerId>
Formats
plain text
HTTP Method
PUT
Requires Authentication
HTTP BASIC
API rate limited
No
Parameters
emailRequired - Your contact email addressnameOptional - Company name (your name)displayNameOptional - Name which is shown in chatswelcomeMessageOptional - Message which is shown when the chat window opens and the operator is on-lineofflineMessageOptional - Message which is shown when the chat window opens and all operators are off-linecolorOptional - HEX format e.g. #32575e - Color of the chat windowenableChatOptional - boolean value (true/false) - Enable or disable the "Chat" tab in the plupper widgetenableIdeasOptional - boolean value (true/false) - Enable or disable the "Share Idea" tab in the plupper widgetenableProblemsOptional - boolean value (true/false)- Enable or disable the "Report Problem" tab in the plupper widgetenableEmailOptional- boolean value (true/false) - Enable or disable the "Email Us" tab in the plupper widgetenableFaqOptional - boolean value (true/false)- Enable or disable the "FAQ" tab in the plupper widgetofflineMsgToEmailOptional - boolean value (true/false) - Enables forwarding of all messages to email while the account is off-line.
Response
200 OK
Example queries
- PUT https://api.plupper.com/resources/provider/123
- jQuery example
$.ajax({ type: "PUT", url: "https://api.plupper.com/resources/provider", username: "john.lennon@example.com", password: "mysecret", data: ({ welcomeMessage: "New welcome message", enableFaq: false }), success: function() { alert("Updated"); } });