GET api/2.0/crm/contact/{contactid}/data/{id}
Returns the detailed contact information with the ID specified in the request.
Name |
Description |
Type |
Example |
contactid
sent in url
|
Contact ID
|
number
|
1234
|
id
sent in url
|
Contact information ID
|
number
|
1234
|
GET api/2.0/crm/contact/1234/data/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": {
"id": 0,
"infoType": 1,
"category": 0,
"data": "support@onlyoffice.com",
"categoryName": "Home",
"isPrimary": true
}
}
text/xml
<result>
<status>0</status>
<response>
<id>0</id>
<infoType>1</infoType>
<category>0</category>
<data>support@onlyoffice.com</data>
<categoryName>Home</categoryName>
<isPrimary>true</isPrimary>
</response>
</result>