Organization

Retrieve the data for your Organization

GET https://api.servicebell.com/public/api/v1/org

{
  "allowRecording":true,
  "autoRecording":false,
  "clientKey":"7a87199a22634140a0d8a8aa4359081c",
  "enableDevDomains":false,
  "enableRecaptcha":false,
  "hippaMode":"None",
  "id":1527322543,
  "isWorkingHours":true,
  "name":"Service Bell",
  "status":"ACTIVE",
  "timezone":"US/Central"
}

Retrieve the listing of Users in your Organization

GET https://api.servicebell.com/public/api/v1/org/team

[
  {
    "avatar":{
      "imageUrl":"https://uploads.servicebell.com/avatars/1663717201.cacecb44dce34a17aab93534f1c25fe6.png"
    },
    "displayName":"Zach Schipono",
    "emailAddress":"[email protected]",
    "emailVerified":true,
    "id":7926718459,
    "onCall":true,
    "orgRoles":[
      "ADMIN"
    ],
    "title":"Developer"
  },
  ...
]

Scrub the Visitor records for users matching the given IDs & emails

POST https://api.servicebell.com/public/api/v1/org/<ID>/visitorscrub

Request Body

[
  {
    "customId":"None",
    "customMetadata":{
      "displayName":"REDACTED"
    },
    "id":"747a2bd8-d1aa-4736-beb5-1ebe142439f0",
    "orgId":1222456005
  },
  {
    "customId":"None",
    "customMetadata":{
      "displayName":"REDACTED"
    },
    "id":"b81085e2-ae40-4303-9050-9c38784c7454",
    "orgId":1222456005
  }
]j

Last updated