[30388f42] Infrastructure Hardening: Repaired CE/Connector DB schema, fixed frontend styling build, implemented robust echo shield in worker v2.1.1, and integrated Lead Engine into gateway.
This commit is contained in:
20
connector-superoffice/inspect_person_full.py
Normal file
20
connector-superoffice/inspect_person_full.py
Normal file
@@ -0,0 +1,20 @@
|
||||
import os
|
||||
import json
|
||||
import logging
|
||||
from dotenv import load_dotenv
|
||||
load_dotenv(override=True)
|
||||
from superoffice_client import SuperOfficeClient
|
||||
|
||||
logging.basicConfig(level=logging.INFO)
|
||||
|
||||
def inspect_person(person_id: int):
|
||||
client = SuperOfficeClient()
|
||||
print(f"📡 Fetching FULL Person {person_id}...")
|
||||
person = client._get(f"Person/{person_id}")
|
||||
if person:
|
||||
print(json.dumps(person, indent=2))
|
||||
else:
|
||||
print("❌ Person not found.")
|
||||
|
||||
if __name__ == "__main__":
|
||||
inspect_person(193036)
|
||||
Reference in New Issue
Block a user