Retrieve the mentionable accounts for a conversation.
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
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=\"c8efb1bb-a2ff-45cc-aead-12164f286141\">@Gareth Thompson</span>"
}
]
]
]
}