User ID Search
Search the specific chats by the User ID of the message sender
UserID
Payload
{
"message_user_id": 1326000011
}
Example
import requests
url = 'https://api.darkrecon.cloud/dark-recon/telegram'
headers = {
'Authorization': 'your api key here',
'Content-Type': 'application/json'
}
data = {
"message_user_id": 1326000011
}
response = requests.post(url, headers=headers, json=data)
print(response.status_code)
print(response.json())