Update notification settings for a conversation

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

Headers

Path parameters

application/json

Body

  • Timestamp to mute notifications until. Null to unmute a conversation.

POST /api/v1/conversation/{conversation_uuid}/notifications
curl \
 -X POST https://api.plannrcrm.com/api/v1/conversation/conversation_uuid/notifications \
 -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}" \
 -d '{"timestamp":"2022-01-30 12:00:00"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "timestamp": "2022-01-30 12:00:00"
}