Reputation: 11
I want user id of the subscribers. In the documentation, it only shows the callbacks like :
{
"event":"conversation_started",
"timestamp":1457764197627,
"message_token":4912661846655238145,
"type":"open",
"context":"context information",
"user":{
"id":"01234567890A=",
"name":"John McClane",
"avatar":"http://avatar.example.com",
"country":"UK",
"language":"en",
"api_version":1
},
"subscribed":false
}
Upvotes: 1
Views: 655
Reputation: 6355
Link to documentation you provided is about Webhook Events that comes when some particular user subscribed.
What you can do is to get information about your subscribers using Get Account Info endpoint. Its response contains subscribers_count
and members
(list with fields: id
, name
, avatar
and role
).
P.S. the only thing that you need to check is if the public account subscribers are chat bot subscribers too.
Upvotes: 0