Rep.ai
  • 5 Minute Quick Start
  • Controlling the Widget
  • Custom Visitor Identities
  • Listening to Events
  • Examples of Custom Behavior
  • Security and Spam Prevention
  • Virtual Backgrounds
  • How to Identify Contacts who Click Through Emails to Your Site from Email Sequencers
  • Troubleshooting
    • Browser Compatibility
    • Notifications
    • Content-Security-Policy (CSP)
    • Firewalls and VPNs
    • Support
    • Scheduler
  • Integrations
    • Acuity
    • Calendly
    • Chili Piper
    • Clearbit
    • Google Calendar
    • HubSpot
    • Intercom
    • Outreach
    • Salesforce
    • Shopify
    • Slack
    • Microsoft Teams
    • Zapier
    • Zendesk
    • Zoom
    • Outlook Calendar
    • Salesloft
    • Gong
  • API
    • Introduction
    • Authentication
    • Scrub Visitor Data
    • Nightly Data Dumps
  • API Resources
    • Organization
  • ⚠️Experimental
    • Performance
    • Overview
    • Zendesk App
  • Outbound (Dialer)
    • Getting Started with Rep.ai Outbound (Dialer)
    • How to Create and Manage Custom Columns (Properties) in Rep.ai Outbound (Dialer)
    • How to Mark a Number as "Do Not Call" in Rep.ai Outbound (Dialer)
    • FAQs
  • SPOTLIGHT
    • How to set high-intent page preferences for intent scoring
    • How to toggle auto-create companies based on visitor identification
    • CRM Fields for Rep.ai Influence (Contact)
    • CRM Fields for Rep.ai Influence (Account)
  • ANALYTICS
    • Metric definitions
Powered by GitBook
On this page

Was this helpful?

  1. API

Introduction

Utilize Rep.ai public API to automate common requests!

PreviousGongNextAuthentication

Last updated 5 months ago

Was this helpful?

Rep.ai 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.rep.ai

Get started with the API by .

Request
# List all users of my Organization
curl https://api.rep.ai/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"
  }
]
requesting an API Key