POST api/2.0/crm/contact/{contactid}/data
Adds the information with the parameters specified in the request to the contact with the selected ID.
Name |
Description |
Type |
Example |
contactid
sent in url
|
Contact ID
|
number
|
1234
|
infoType
sent in body
|
Contact information type
|
Phone, Email, Website, Skype, Twitter, LinkedIn, Facebook, Address, LiveJournal, MySpace, GMail, Blogger, Yahoo, MSN, ICQ, Jabber, AIM, VK
|
Phone
|
data
sent in body
|
New data
|
string
|
some text
|
isPrimary
sent in body
|
Contact information importance: primary or not
|
Bool value
|
true
|
category
sent in body
|
Contact information category
|
string
|
some text
|
POST api/2.0/crm/contact/1234/data
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"infoType": "phone",
"data": "some text",
"isPrimary": true,
"category": "some text"
}
application/json
{
"status": 0,
"response": {
"InfoType": 1,
"Category": 0,
"Data": "support@onlyoffice.com",
"CategoryName": "Home",
"IsPrimary": true,
"id": 1234
}
}
text/xml
<result>
<status>0</status>
<response>
<InfoType>1</InfoType>
<Category>0</Category>
<Data>support@onlyoffice.com</Data>
<CategoryName>Home</CategoryName>
<IsPrimary>True</IsPrimary>
<id>1234</id>
</response>
</result>