Creates Contact Note using Reamaze. Requires note_body and customer_email. Returns confirmation of creation, including the new record’s ID and details.
Creates a new customer support conversation in Reamaze with chat history and customer details.
This integration creates a new support conversation in Reamaze, c... Read More
Creates a new customer support conversation in Reamaze with chat history and customer details.
This integration creates a new support conversation in Reamaze, converting chat transcripts into formal support tickets. It captures the entire conversation history, customer information, and routes the ticket to the appropriate support category. This allows teams to seamlessly escalate chatbot conversations to human agents while preserving all context and customer data.
Returns the newly created conversation object with key details including conversation_slug (unique identifier), conversation_subject, conversation_status (0 = open), author details (customer info with author_id), category information, created_at/updated_at timestamps, message_count, and the full conversation_message body.
Example Output:
{
"conversation_slug": "order-rd4563921-shipping-inquiry",
"conversation_subject": "Order RD4563921 shipping inquiry",
"conversation_status": 0,
"author": {
"author_id": 298457123,
"name": "Sarah Johnson",
"email": "sarah.johnson@example.com",
"mobile": "+1-555-0123",
"display_name": "Sarah Johnson",
"friendly_name": "Sarah"
},
"category": {
"name": "Customer Support",
"slug": "support",
"email": "support@acmecompany.com"
},
"created_at": "2026-02-10T15:30:45.123Z",
"updated_at": "2026-02-10T15:30:48.456Z",
"message_count": 1,
"conversation_message": {
"body": "CHAT CORRESPONDENCE:nnCHATBOT: Hello! How can I help you today?nnUSER: I need help with my order status",
"origin_id": "<unique_message_id@reamaze.com>"
}
} Read LessCreates Message in Conversation using Reamaze. Requires crm_prefix and visibility and conversation_slug and conversation_history. Returns confirmation of creation, including the... Read More
Creates Message in Conversation using Reamaze. Requires crm_prefix and visibility and conversation_slug and conversation_history. Returns confirmation of creation, including the new record’s ID and details.
Read LessRetrieves Conversation by Slug using Reamaze. Requires crm_prefix and conversation_slug. Returns the requested data record(s) with all available details.
Retrieves Conversations by Email using Reamaze. Requires crm_prefix and user_email. Returns an array of matching records with relevant details.
Search Contact by Email using Reamaze. Requires crm_prefix and user_email. Returns results based on the executed action.
Search Contact by Name using Reamaze. Requires user_name. Returns results based on the executed action.
Search Contact by Name(Demo) using Reamaze. Requires user_name. Returns results based on the executed action.
Updates Conversation using Reamaze. Requires status and tag_list and crm_prefix and custom_data and assignee_email and conversation_slug. Returns the updated record with the app... Read More
Updates Conversation using Reamaze. Requires status and tag_list and crm_prefix and custom_data and assignee_email and conversation_slug. Returns the updated record with the applied changes.
Read Less