You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
async def bulk_search(phoneNumbers, countryCode, installationId):
"""
Perform bulk search for a list of phone numbers using Truecaller API.
Args:
phoneNumbers (list[str]): The list of phone numbers to search.
countryCode (str): The country code of the phone numbers.
installationId (str): The installation ID for authorization.
The function expects "phoneNumbers" as a list of numbers
but within the contents of the function, converts it into a string and send to the API
The function expects "phoneNumbers" as a list of numbers
but within the contents of the function, converts it into a string and send to the API
While this works in getting a response from truecaller, the response have the wrong content in the "key" section
We should either convert the list of numbers into a comma separated string again or just ask for a comma separated string of numbers.
The text was updated successfully, but these errors were encountered: