Get Stores list
This API allows you to see all the WhatsApp stores you created
Settings:
URL | |
Method | JSON via GET |
Header | Authorization: Bearer {{access_token}} *The access_token can be received from settings->get access token API. |
Body: nothing, leave it empty.
Response:
{
"status": "OK",
"reason": 1,
"totalStores": 1,
"list": [
{
"whatsapp": "972501234567",
"business_name": "My Store",
"token": "abc123xyz789...",
"reference": "ref123",
"status": 1,
"onboarding_link": "https://onboarding.direct/abc123",
"site_url": "https://mystore.com",
"created_at": "1699999999"
}
]
}
Response-Explain:
Parameter | Description | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
status | OK or FAIL "OK" means the request has been sent to Meta. "Fail" means error. | ||||||||||||||||
list | array of [whatsapp, business_name, token, reference, status, onboarding_link, site_url, created_at] Explanation:
| ||||||||||||||||
reason | 'reason' is the status explanation in case of FAIL
|