Files
Brancheneinstufung2/connector-superoffice/test_contact.py
Floke 3fd3c5acfa [31f88f42] Keine neuen Commits in dieser Session.
Keine neuen Commits in dieser Session.
2026-03-10 13:54:07 +00:00

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)