GET api/2.0/mail/conversations/link/crm/status This function requires authentication

Description

Checks if a conversation is CRM linked or not by message ID.

Parameters
Name Description Type Example
message_id
sent in url
ID of any messages from the conversation number 1234
Example
GET api/2.0/mail/conversations/link/crm/status
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "message_id": 1234
}
Returns

Conversation CRM status

Example Response

application/json

{
  "status": 0,
  "response": {
    "messageId": 12354,
    "isLinked": true
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <messageId>12354</messageId>
    <isLinked>True</isLinked>
  </response>
</result>