SparrowDesk
ConversationsIdReply

Add reply to a conversation

POST
/conversations/{id}/reply
AuthorizationBearer <token>

In: header

Path Parameters

idinteger

Conversation id

reply_textstring
typestring
Value in"INTERNAL_NOTE" | "REPLY"

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://app.sparrowdesk.com/v1/conversations/0/reply" \  -H "Content-Type: application/json" \  -d '{    "reply_text": "string",    "type": "INTERNAL_NOTE"  }'
{
  "data": {
    "success": true
  }
}
{
  "error": {
    "message": "Invalid reply data"
  }
}
{
  "error": {
    "message": "Conversation not found"
  }
}
{
  "error": {
    "message": "Error adding reply to conversation"
  }
}