API Documentation

    ContactsAdd Contact

    Method: /contacts.[format]
    Fields:
    Name:Data Type:Description:
    first_nameStringPerson’s first name
    last_nameStringPerson’s last name
    job_titleStringJob Title or Position
    phoneStringPhone Number
    cellStringCell Phone Number
    faxStringFax Number
    email_1StringPrimary Email Address
    email_2StringSecondary Email Address
    Syntax:
    https://[subdomain].salesbinder.com/api/2.0/contacts.json
    HTTP Request Type: POST
    Example JSON Data to Submit
    1{
    2   "contact":{
    3      "first_name":"John",
    4      "last_name":"Doe",
    5      "job_title":"Owner",
    6      "phone":"604-555-5555",
    7      "cell":"778-222-2222",
    8      "email_1":"john.doe@gmail.com"
    9   }
    10}
    Example XML Data to Submit
    1<?xml version="1.0" encoding="UTF-8" ?>
    2<contact>
    3  <first_name>John</first_name>
    4  <last_name>Doe</last_name>
    5  <job_title>Owner</job_title>
    6  <phone>604-555-5555</phone>
    7  <cell>778-222-2222</cell>
    8  <email_1>john.doe@gmail.com</email_1>
    9</contact>
    Success:

    If you have been successful in saving a new contact, the response will return the newly created data object along with a “message” value of “Saved” as seen below.

    Example JSON Returned Response
    1{
    2    "message": "Saved",
    3    "contact": {
    4        "first_name": "John",
    5        "last_name": "Doe",
    6        "job_title": "Owner",
    7        "phone": "604-555-5555",
    8        "cell": "778-222-2222",
    9        "email_1": "john.doe@gmail.com",
    10        "created": "2016-11-11T01:20:45+00:00",
    11        "modified": "2016-11-11T01:20:45+00:00",
    12        "id": "21a00776-60fa-4c79-8d09-0c741b3151f4"
    13    }
    14}

    Updated on February 7th, 2022

    Network Status:
    100% Global Availability