JavaScript
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.thanks.io/api/v2/mailing-lists/{mailingListId}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "message": "success" }
Documentation IndexFetch the complete documentation index at: https://docs.thanks.io/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.thanks.io/llms.txt
Use this file to discover all available pages before exploring further.
Bearer token authentication using your thanks.io API key
ID of mailing list
56
Successful Response
The response is of type object.
object
Was this page helpful?