Skip to main content

Update Newsletter Name

Method#

/update-newsletter-name#

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

Header#

KeyValue
Client-TokenACCOUNT SECURITY TOKEN

Concept#

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


Attributes#

Required#

AttributesTypeDescription
idstringNewsletter ID
namestringNew newsletter name

Request Body#

URL#

Method

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

Body#

{
"id": "999999999999999999@newsletter",
"name": "New newsletter name"
}
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#