-
Notifications
You must be signed in to change notification settings - Fork 94
Open
Description
Description
I encountered an unexpected 404 Not Found error when attempting to retrieve contacts using the get_contacts method with the tenantId directly fetched from client.last_connection. However, if I first assign the tenantId to an intermediate variable and then use that variable in the get_contacts method, the call works as expected.
404
client.accounting_api.get_contacts(client.last_connection['tenantId'])
Works as expected
tenant_id = client.last_connection['tenantId']
client.accounting_api.get_contacts(tenant_id)
Seems very odd to me.
samsarge
Metadata
Metadata
Assignees
Labels
No labels