We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 60b1413 + 266aa80 commit c542f79Copy full SHA for c542f79
README.rst
@@ -150,9 +150,9 @@ Tags
150
.. code:: python
151
152
# Tag users
153
- tag = intercom.tags.tag_users(name='blue', users=[{'email': 'test1@example.com'}])
+ tag = intercom.tags.tag(name='blue', users=[{'email': 'test1@example.com'}])
154
# Untag users
155
- intercom.tags.untag_users(name='blue', users=[{'user_id': '42ea2f1b93891f6a99000427'}])
+ intercom.tags.untag(name='blue', users=[{'user_id': '42ea2f1b93891f6a99000427'}])
156
# Iterate over all tags
157
for tag in intercom.tags.all():
158
...
0 commit comments