Add Contact

URL:

https://vortext.ca/vapi/1.0/

Method:

POST

JSON Parameters:

* = Required parameters

Parameter Value
* phone 7053802406
tags A list of one or more tags to add to the contact separated by a comma
firstname Contacts first name
lastname Contacts last name
company Company name
email Contacts email address
acctmgr Assign the contact to an account owner by specifying their Global ID
birthday Contacts birth date MM/DD/YYYY
message_hashtag Messaging hashtg
address Address
city City
state State
zip Postal/Zip code
country Country
security Security parameters

You may assign the user to the desired list(s) by including the "list" parameter. In addition, you may include any other custom fields that you may have added.

Example Request
POST https://vortext.ca/vapi/1.0/
-H "Authorization: Basic [your API key]"
-H "Action: AddContact"
-D 
         {
            "phone":"7053802406",            
            "firstname":"Contacts first name",
            "lastname":"Contacts last name",
            "company":"Company name",
            "email":"Contacts email address",
            "birthday":"Contacts birth date MM/DD/YYYY",
            "message_hashtag":"Messaging hashtg",
            "address":"Address",
            "city":"City",
            "state":"State",
            "zip":"Postal/Zip code",
            "country":"Country",
            "tags":"Lead"
         }
         
			

Response:

{ "success":"true", "message":"Contact added OK" }