Python3 Example
Here is an example of constructing a request to identify a contact corresponding to the contact_id.
import requests
url = " https://api.neuron360.io/contact/<<INSERT YOUR CONTACT_ID HERE>>"
payload = {}
headers = {
'x-api-key': <<INSERT YOUR API KEY HERE>>
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
Updated 9 days ago