API Documentation
ContactsList Contacts
Method: /contacts.[format]
Syntax:
https://[subdomain].salesbinder.com/api/2.0/contacts.json?page=[number]Sample Returned JSON Data
{
"count": "8",
"page": "3",
"pages": "4",
"contacts": [
[
{
"first_name": "Biff",
"last_name": "Johnson",
"job_title": "Warehouse Manager",
"phone": "555-348-9458",
"cell": "555-948-9458",
"fax": "555-837-9488",
"email_1": "biff@sample.com",
"email_2": "biff@sample2.com",
"id": "5695ddfe-ceb4-40c4-9cc5-05716882ca98",
"modified": "2016-11-11T00:21:33+00:00",
"created": "2016-01-13T05:17:50+00:00"
},
{
"first_name": "Steve",
"last_name": "Madden",
"job_title": "President, CEO",
"phone": "780-834-9384",
"cell": "",
"fax": "",
"email_1": "steve@madden.com",
"email_2": "sample2@email.com",
"id": "55d78be4-633c-44e8-9080-04db6882ca98",
"modified": "2016-11-11T00:22:33+00:00",
"created": "2015-08-21T20:36:52+00:00"
}
]
]
}Sample Returned XML Data
<?xml version="1.0" encoding="UTF-8" ?>
<response>
<contact>
<first_name>Biff</first_name>
<last_name>Johnson</last_name>
<job_title>Warehouse Manager</job_title>
<phone>555-348-9458</phone>
<cell>555-948-9458</cell>
<fax>555-837-9488</fax>
<email_1>biff@sample.com</email_1>
<email_2>biff@sample2.com</email_2>
<id>5695ddfe-ceb4-40c4-9cc5-05716882ca98</id>
<modified>11/11/16, 12:21 AM</modified>
<created>1/13/16, 5:17 AM</created>
</contact>
<contact>
<first_name>Steve</first_name>
<last_name>Madden</last_name>
<job_title>President, CEO</job_title>
<phone>780-834-9384</phone>
<cell/>
<fax/>
<email_1>steve@madden.com</email_1>
<email_2>sample2@email.com</email_2>
<id>55d78be4-633c-44e8-9080-04db6882ca98</id>
<modified>11/11/16, 12:22 AM</modified>
<created>8/21/15, 8:36 PM</created>
</contact>
</response>Updated on February 7th, 2022