Automated Replies
Get Automated Replies
Retrieve a paginated list of automated replies for the authenticated organization.
Features:
- Paginated results with configurable page size
- Trigger phrases and match criteria
- Response types and content
- Creation and modification tracking
GET
Get Automated Replies
Authorizations
Bearer token authentication. Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Query Parameters
Page number for pagination
Example:
1
Number of automated replies per page
Example:
10
Response
200
application/json
Successful response with automated replies list
The response is of type object
.
Previous
Create Automated ReplyCreate a new automated reply in the organization.
**Required Fields:**
- name: Descriptive name for the automated reply
- trigger: Phrase that triggers this reply
- match_criteria: How the trigger should match ("exact match", "contains", "starts with", "ends with")
- response_type: Type of response ("text", "image", "document", "media")
- response: The actual response content
**Match Criteria:**
- **exact match**: Trigger must match the entire message exactly
- **contains**: Message must contain the trigger phrase anywhere
- **starts with**: Message must start with the trigger phrase
- **ends with**: Message must end with the trigger phrase
Next
Get Automated Replies