Skip to main content
POST
/
call
/
make
Iniciar chamada de voz
curl --request POST \
  --url https://api.wppfy.com/call/make \
  --header 'Content-Type: application/json' \
  --header 'token: <api-key>' \
  --data '
{
  "number": "5511999999999"
}
'
{
  "response": "Call successful"
}

Authorizations

token
string
header
required

Body

application/json
number
string
required

Número do contato no formato internacional (ex: 5511999999999)

Example:

"5511999999999"

Response

Chamada iniciada com sucesso

response
string

Mensagem de confirmação

Example:

"Call successful"