Skip to main content
DELETE
/
newsletters
/
{newsletterId}
curl -X DELETE "https://api.tktchurch.com/v1/newsletters/123e4567-e89b-12d3-a456-426614174000" \
  -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIs..."
This endpoint requires authentication and the deleteNewsletter permission.

Path Parameters

newsletterId
string
required
The UUID of the newsletter to delete

Response

Returns HTTP 204 No Content on successful deletion.

Error Responses

error
object
Error details when the request fails
Common error cases:
  • 400 Bad Request: Invalid newsletter ID format
  • 401 Unauthorized: Missing or invalid access token
  • 403 Forbidden: Missing required permission
  • 404 Not Found: Newsletter not found
curl -X DELETE "https://api.tktchurch.com/v1/newsletters/123e4567-e89b-12d3-a456-426614174000" \
  -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIs..."