7 lines
290 B
Python
7 lines
290 B
Python
from dotenv import load_dotenv
|
|
load_dotenv(override=True)
|
|
from superoffice_client import SuperOfficeClient
|
|
c = SuperOfficeClient()
|
|
res = c.search("Contact?$top=1&$select=contactId,name,department,orgNr,number,business/value,category/value,country/value,address,urlAddress,urls")
|
|
print(res)
|