We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey :
Notice that there is a mismatch between doc and code :
a. we can create an object firstly :
user = User(name="John Doe", email="[email protected]") created_user = zenpy_client.users.create(user)
then update it :
created_user.role = 'agent' created_user.phone = '123 434 333' modified_user = zenpy_client.users.update(created_user)
create
TicketAudit
Ticket
user = User(name="John Doe", email="[email protected]") # notice here, need to retrieve `.ticket` attribute created_user = zenpy_client.users.create(user).ticket
and then call update action
wanna a secnd 👀 to help me confirm this issue . reallllly appreciate it a lot ( : -
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey :
Notice that there is a mismatch between doc and code :
a. we can create an object firstly :
then update it :
create
action returns aTicketAudit
object instead ofTicket
object, so to make the code above work, we should :and then call update action
wanna a secnd 👀 to help me confirm this issue . reallllly appreciate it a lot ( : -
The text was updated successfully, but these errors were encountered: