diff --git a/packages/api/src/services/subscriptions.ts b/packages/api/src/services/subscriptions.ts index 483520378..f0d7997ac 100644 --- a/packages/api/src/services/subscriptions.ts +++ b/packages/api/src/services/subscriptions.ts @@ -206,13 +206,15 @@ class MilkRoadHandler extends SubscribeHandler { class MoneyStuffHandler extends SubscribeHandler { async _subscribe(email: string): Promise { - await axios.post( - 'https://login.bloomberg.com/api/engagements/follow-author', + await axios.put( + `https://login.bloomberg.com/api/newsletters/update?email=${encodeURIComponent( + email + )}&source=¬ify=true&optIn=false`, { headers: { 'content-type': 'application/json', }, - body: `{"email":"${email}","optIn":false,"topic":"18273090","authorId":"18273090","authorName":"Matt Levine"}`, + body: '{"Money Stuff":true}', } )