Skip to main content
POST
/
flowise
/
changeStatus
/
{instance}
Atualiza o status de uma instância Flowise
curl --request POST \
  --url https://api.zapthinker.com/flowise/changeStatus/{instance} \
  --header 'Content-Type: application/json' \
  --header 'apikey: <api-key>' \
  --data '
{
  "remoteJid": "5511912345678@s.whatsapp.net",
  "status": "closed"
}
'
{
  "message": "Status alterado com sucesso"
}

Documentation Index

Fetch the complete documentation index at: https://docs.zapthinker.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

apikey
string
header
required

Your authorization key header

Path Parameters

instance
string
required

Nome da instância

Body

application/json

Corpo da requisição contendo o identificador remoto e o status a ser atualizado

remoteJid
string
required

Identificador remoto do WhatsApp no formato JID

Example:

"5511912345678@s.whatsapp.net"

status
enum<string>
required

Novo status para a instância

Available options:
opened,
paused,
closed
Example:

"closed"

Response

Status da instância Flowise atualizado com sucesso

message
string
Example:

"Status alterado com sucesso"