Introduction

Utilize ServiceBell's public API to automate common requests!

ServiceBell offers a limited REST API for our customers to use in order to help automate certain actions. All responses from the API will return JSON-encoded responses and use standard HTTP response codes.

The root URL for all API requests is https://api.servicebell.com

Get started with the API by requesting an API Key.

Request
# List all users of my Organization
curl https://api.servicebell.com/public/api/v1/org/team \
-H "Accept: application/json" \
-H "X-Api-Key: BGFEUUEr.YmGIxL9maFhPtapAQW9RK5RX1MX3SjLRKaJJJ_96yVg"
Response
[
  {
    "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"
  }
]

Last updated