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