Retrieve the mentionable accounts for a conversation.

POST /api/v1/conversation/{conversation_uuid}/mentions

Headers

Path parameters

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
POST /api/v1/conversation/{conversation_uuid}/mentions
curl \
 -X POST https://api.plannrcrm.com/api/v1/conversation/conversation_uuid/mentions \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json" \
 -H "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
  "data": [
    [
      [
        {
          "item": "Gareth Thompson",
          "contents": "<span data-type=\"mention\" data-account-uuid=\"94778807-7f28-4746-a7c1-24f7c4b992c7\">@Gareth Thompson</span>"
        }
      ]
    ]
  ]
}