Add a contact to your profile. Returns the created profile contacts ID

Request Parameters

Parameter Description  

name * (string)

email * (string)

email address

phone (string)

fax (string)

skype (string)

* denotes a required field

Response

Parameter Description

contact_id (int)

The contact Id for this contact

*on success

status (string)

Was this a successful request?

OK or error

error (array)

A list of errors

*on error
* denotes a response field which is not always present

Example JSON response:

On Success:

{
"contact_id": 434,
"status": "OK"
}

On Error:

{
    "status": "error",
    "error": [
        {
        "field": "name",
        "msg": "empty"
        }
    ]
}

 

Back to Top