Files
chatwoot/docs/api-reference/other.mdx
T

45 lines
1.1 KiB
Plaintext

---
title: 'Other APIs'
description: 'Additional API endpoints'
---
# Other APIs
This section covers additional API endpoints in Chatwoot that don't fit neatly into the other categories.
## Available Endpoints
The Other APIs include endpoints for:
- **CSAT Survey Page** - APIs for CSAT survey functionality
## Authentication
Authentication requirements vary by endpoint. Refer to the specific endpoint documentation for details.
## Rate Limiting
API requests are subject to rate limiting. Implement appropriate retry logic in your applications.
## OpenAPI Specification
The complete OpenAPI specification for the Other APIs is available below:
<Card title="OpenAPI Specification" icon="file-code" href="/api-reference/other">
View the complete OpenAPI specification for the Other APIs
</Card>
## Code Examples
```javascript
// Example: Retrieving survey responses
const response = await fetch('https://app.chatwoot.com/survey/responses/{conversation_uuid}', {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}
});
const data = await response.json();
console.log(data);
```