Cara Kelola & Kustomisasi Profil WhatsApp

API kami memberikan kontrol penuh atas profil WhatsApp Anda, Anda bisa mengubah status dan mengedit nama profil dengan mudah. Selain itu, Anda juga bisa mengambil foto profil dari akun WhatsApp lain, memberikan fleksibilitas lebih dalam pengelolaan data.

setStatus

post

Mengubah status di whatsapp.

Body
apiKeystringOptionalExample: api_key
statusstringOptionalExample: isi_status
Responses
200
Response 200
application/json
post
POST /api/setStatus HTTP/1.1
Host: localhost
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 42

"apiKey='api_key'&status='isi_status'"
200

Response 200

{
  "code": 200,
  "query": {
    "status": "~ CEO WHAPI"
  },
  "results": {
    "message": "Your whatsapp status updated successfully."
  }
}

getProfilePicture

post

Mendapatkan foto profil whatsapp pada nomer tertentu

Body
apiKeystringOptionalExample: api_key
phonestringOptionalExample: no_hp
Responses
200
Response 200
application/json
post
POST /api/getProfilePicture HTTP/1.1
Host: localhost
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 36

"apiKey='api_key'&phone='no_hp'"
200

Response 200

{
  "code": 200,
  "query": {
    "to": "xxxxxxx"
  },
  "results": {
    "urlImage": "xxxxxxx"
  }
}