Get client information

You can get your client information

At any time you can check the client object that is assigned to you when you registered. This contains basic information of your account at the Oliver API.

curl --request GET \
  --url https://api.behavioralsignals.com/client/cid \
  --header 'accept: application/json' \
  --header 'x-auth-token: your_token'
import requests

url = "https://api.behavioralsignals.com/client/cid"

headers = {
    'accept': "application/json",
    'x-auth-token': "your_token"
    }

response = requests.request("GET", url, headers=headers)

print(response.text)
var data = null;

var xhr = new XMLHttpRequest();

xhr.addEventListener("readystatechange", function () {
  if (this.readyState === this.DONE) {
    console.log(this.responseText);
  }
});

xhr.open("GET", "https://api.behavioralsignals.com/client/cid/process/pid");
xhr.setRequestHeader("accept", "application/json");

xhr.send(data);

What’s Next