Schedule cancel del add-on de marketing al next reset
POST
/v1/client/subscriptions/remove-marketing
const url = 'https://api.mailerdash.com/v1/client/subscriptions/remove-marketing';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"password":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.mailerdash.com/v1/client/subscriptions/remove-marketing \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "password": "example" }'Cliente mantiene los beneficios del add-on hasta su next billing reset (sin reembolso). En el reset, lazy worker soft-cancela la sub (cancelled_at set). Re-auth password.
Authorizations
Sección titulada «Authorizations »Request Body required
Sección titulada «Request Body required » Media type application/json
object
password
required
string
Example generated
{ "password": "example"}Responses
Sección titulada « Responses »Cancellation scheduled
Media type application/json
object
sub_id
string
effective_at
string format: date-time
Example generated
{ "sub_id": "example", "effective_at": "2026-04-15T12:00:00Z"}No tienes add-on de marketing activo
Password incorrecto