CallOnTheGo API V1

The CallOnTheGo API is a REST based JSON API. It's not a strict REST API, because that is silly. We want to keep down the number of requests as much as possible.

Authentication

After creating an account, obtain your API Key by clicking your username in the upper right corner of the site and then clicking the show link under API Key.

When making requests, include the API Key as a header called x-cotg-authtoken.

Root URL:

https://app.callonthego.com/api/v1

Models

List

      
        
id integer
name string
description text
user_id integer
contact_size integer
oid string
created_at datetime
updated_at datetime
deleted_at datetime

Contact

      
        
id integer
first_name string
last_name string
number string
company string
email string
notes text
oid string
user_id integer
created_at datetime
updated_at datetime
deleted_at datetime

Call

      
        
id integer
call_time integer
prev_call_id integer
start_time datetime
end_time datetime
oid string
contact_id integer
list_id integer
user_id integer
created_at datetime
updated_at datetime
deleted_at datetime

Requests

Authenticated requests made to the following urls will result in the following behavior.
Root URL: https://app.callonthego.com/api/v1

User

List

Contact

Calls