Skip to main content

Update Newsletter Description

Method#

/update-newsletter-description#

POST https://api.z-api.io/instances/YOUR_INSTANCE/token/YOUR_TOKEN/update-newsletter-description

Header#

KeyValue
Client-TokenACCOUNT SECURITY TOKEN

Concept#

This method is responsible for changing the description of an existing newsletter.


Attributes#

Required#

AttributesTypeDescription
idstringNewsletter ID
descriptionstringNew newsletter description

Request Body#

URL#

Method

POST https://api.z-api.io/instances/YOUR_INSTANCE/token/YOUR_TOKEN/update-newsletter-description

Body#

{
"id": "999999999999999999@newsletter",
"description": "New newsletter description"
}
warning

The newsletter ID must always contain the suffix "@newsletter" as this is the standard used by WhatsApp itself.


Response#

201#

AttributesTypeDescription
valuebooleantrue if successful, false in case of failure

Example

{
"value": true
}

405#

In this case, ensure that you are correctly sending the method specification, i.e., check if you sent the POST or GET as specified at the beginning of this topic.

415#

If you receive a 415 error, make sure to add the "Content-Type" to the headers of the request for the object you are sending, mostly "application/json."


Webhook Response#

Link to the response of the webhook (upon receiving)

Webhook


Code#