Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://api.notifique.dev/v1/whatsapp/instances/{instanceId}/qr \ --header 'Authorization: Bearer <token>'
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.notifique.dev/v1/whatsapp/instances/{instanceId}/qr', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requests url = "https://api.notifique.dev/v1/whatsapp/instances/{instanceId}/qr" headers = {"Authorization": "Bearer <token>"} response = requests.get(url, headers=headers) print(response.text)
package main import ( "fmt" "net/http" "io" ) func main() { url := "https://api.notifique.dev/v1/whatsapp/instances/{instanceId}/qr" req, _ := http.NewRequest("GET", url, nil) req.Header.Add("Authorization", "Bearer <token>") res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := io.ReadAll(res.Body) fmt.Println(string(body)) }
200
pending
{ "success": true, "data": { "status": "PENDING", "base64": "data:image/png;base64,...", "loginUrl": null } }
Get the QR code to connect WhatsApp on the phone.
API Key no header Authorization. Exemplo: Authorization: Bearer sk_live_xxxxx
Authorization: Bearer sk_live_xxxxx
QR atual (ou null se ACTIVE).
true
Show child attributes
Was this page helpful?