Documentation in API:
The above code results in the following error:
Must be called in the following manner let results = await sdk.ok(sdk.search_conversations({}));
Python SDK handles these as optional
def search_agents(
self,
# Match agent id. Can be a comma-separated list of ids.
id: Optional[str] = None,
# Match agent name.
name: Optional[str] = None,
# Match agent description.
description: Optional[str] = None,
# Filter on agents created by a particular user.
created_by_user_id: Optional[str] = None,
.....
Documentation in API:
The above code results in the following error:
Must be called in the following manner
let results = await sdk.ok(sdk.search_conversations({}));Python SDK handles these as optional