Python3 Example

Here is an example of constructing a request to identify an office corresponding to the office_id.

import requests

url = " https://api.neuron360.io/office/<<INSERT YOUR OFFICE_ID HERE>>"

payload = {}

headers = {
  'x-api-key': <<INSERT YOUR API KEY HERE>>
}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text)