back to API list


This method returns your account properties.


URL

https://api.plupper.com/resources/provider

Formats

json

HTTP Method

GET

Requires Authentication

HTTP BASIC

API rate limited

No

Parameters

none

Response

{"chatEnabled":"true","color":"#12e652","created":"Tue Feb 24 15:12:42 CET 2009","credit":"70","displayName":"Coca-Cola","email":"mycompany@example.com","emailEnabled":"false","faqEnabled":"true","id":"1","ideasEnabled":"true","name":"Coca Cola Public Company","offlineMessage":"Sorry, all operators are going offline. Please leave message and contact information. Thank you!","offlineMsgToEmail":"true","problemsEnabled":"false","welcomeMessage":"Hi, you can ask question about our product and services here. You can try to find answer for your questions in our FAQ tab."}

Example queries

  • Get my account https://www.plupper.com/resources/provider
  • jQuery example
    $.ajax({
        type: "GET",
        url: "https://api.plupper.com/resources/provider,
        username: "john.lennon@example.com",
        password: "mysecret",
        dataType: "json",
        success: function(json) {
            alert("My email: " + json.email);
        }
    });
                        

STAY CONNECTED