Skip to main content

Respond to a poll

Method#

/send-poll#

POST https://api.z-api.io/instances/YOUR_INSTANCE/token/YOUR_TOKEN/send-poll-vote

Header#

KeyValue
Client-TokenACCOUNT SECURITY TOKEN

Concept#

In this method, you can vote in a specific poll.


Attributes#

Required#

AttributeTypeDescription
phonestringRecipient's phone number (or group ID for group sending) in the format DDI DDD NUMBER. Example: 551199999999. IMPORTANT: Send only numbers, without formatting or masks.
pollMessageIdstringID of the poll message. IMPORTANT: This is the messageId received when sending a poll or receiving it from another contact.
pollVotepollVoteList of options to vote for. IMPORTANT: You can vote for more than one option.

PollVote#

AttributeTypeDescription
namestringOption name

Request Body#

{
"phone": "5511999999999",
"pollMessageId": "Poll message ID",
"pollVote": [
{"name": "Z-API"}
]
}

Response#

200#

AttributesTypeDescription
zaapIdstringid on z-api
messageIdstringid on whatsapp

Example

{
"zaapId": "3999984263738042930CD6ECDE9VDWSA",
"messageId": "D241XXXX732339502B68"
}

405#

In this case certify that you are sending the correct specification of the method. This means, verify if you sent a POST or GET as specified at the beginning of this topic.

415#

In case you receive 415 error, make sure to add the “Content-Type” of the object you are sending in the request headers, mostly “application/json”


Webhook Response#

Webhook response link (upon receiving)

Webhook


Code#