Unsubscribe from the blog by email
POST
/auth/v1/blog/unsubscribe/emailUnsubscribes a recipient using the user id and email from an email-footer link. No authentication required.
Request Body
requiredapplication/json{
"$ref": "#/components/schemas/internal_auth.unsubscribeBlogByEmailBody",
"$ref-value": {
"properties": {
"email": {
"type": "string"
},
"user_id": {
"type": "string"
}
},
"required": [
"email",
"user_id"
],
"type": "object"
}
}Response Body
204
No Content
curl -X POST "https://api.rixl.com/auth/v1/blog/unsubscribe/email" \
-H "Content-Type: application/json" \
-d '{
"email": "string",
"user_id": "string"
}'No Content