devlikeapro

Results 463 comments of devlikeapro

Some vue related issue - we create a new array if no webhooks or smthg [![patron:PRO](https://img.shields.io/badge/patron-PRO-188a42)](https://waha.devlike.pro/docs/how-to/plus-version/#tiers)

hi! For that you need to listen presence https://waha.devlike.pro/docs/how-to/presence/ It'll give you "online" when a user online, so just remember it in your database and this it it! [![patron:PRO](https://img.shields.io/badge/patron-PRO-188a42)](https://waha.devlike.pro/docs/how-to/plus-version/#tiers)

It's good idea tho to have it built-in [![patron:PRO](https://img.shields.io/badge/patron-PRO-188a42)](https://waha.devlike.pro/docs/how-to/plus-version/#tiers)

Hi! Good suggestion, we will add it! Right now we're using Labels for that right now for WA Business accounts for the same purpose https://waha.devlike.pro/docs/how-to/labels/ [![patron:PRO](https://img.shields.io/badge/patron-PRO-188a42)](https://waha.devlike.pro/docs/how-to/plus-version/#tiers)

Added in `2024.10.9` https://waha.devlike.pro/docs/how-to/chats/#unread-chat ---- ### Unread chat Mark chat as unread ```bash POST /api/{session}/chats/{chatId}/unread ``` [![patron:PRO](https://img.shields.io/badge/patron-PRO-188a42)](https://waha.devlike.pro/docs/how-to/plus-version/#tiers)

Hi! One question - do you want to receive this `metadata` in WAHA, **the same session** or different third party system/different session? Because we can add it in the project,...

got it, thank you for the detailed information! :bow: Yeah, that would be a good addition to the `session.metadata` probably and we could add this for sure. Will plan it,...

The way you described and what we'll do: 1. When you send a message via `HTTP /api/sendSomething` - get the `message.id` from the response ( it depends on engine probably)...

> After calling the HTTP /api/sendSomething, will I have enough time to save the message.id from the response in my database? > How soon will the webhook arrive? It depends...

Hi! Via API https://waha.devlike.pro/docs/how-to/webhooks/#retries ```json { "name": "default", "config": { "webhooks": [ { "url": "https://webhook.site/11111111-1111-1111-1111-11111111", "events": [ "message" ], "retries": { "delaySeconds": 2, "attempts": 15 } } ] } }...