Newsletter
Overview
The Telex Newsletter API provides endpoints to manage newsletter subscriptions within Telex. This includes adding new email entries to the newsletter list. These endpoints ensure efficient handling of newsletter subscriptions and data integration.
Add New Email to Newsletter
- Endpoint:
/newsletter
- Method:
POST
- Tags: Newsletter
- Summary: Add a new email entry.
Request Body
{
"email": "johndoe@example.com"
}
Responses
- 201: Email added successfully.
{
"status": "success",
"status_code": 201,
"message": "Email added successfully"
}
- 400: Bad Request.
- 401: Authentication error.
- 500: Server error.