Skip to main content

stop typing

POST 

https://app.hypersender.com/api/whatsapp/v1/:instance/stop-typing

Stop Typing

stop typing in the chat.

Request

Responses

Successful response

Authorization: http

name: Authorizationtype: httpscheme: bearer
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
CURLOPT_URL => 'https://app.hypersender.com/api/whatsapp/v1/:instance/stop-typing',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"chatId": "string"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json',
'Accept: application/json',
'Authorization: Bearer <token>'
),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
Request Collapse all
Base URL
https://app.hypersender.com/api/whatsapp/v1
Auth
Parameters
— pathrequired
— header
— header
Body
{
  "chatId": "string"
}