25
25
Authentication
26
26
---------------
27
27
28
- Intercom documentation: `Authentication <http://api .intercom.io/docs #authentication >`_.
28
+ Intercom documentation: `Authentication <http://doc .intercom.io/api/v1/ #authentication >`_.
29
29
30
30
::
31
31
39
39
Getting all Users
40
40
+++++++++++++++++
41
41
42
- Intercom documentation: `Getting all Users <http://api .intercom.io/docs#getting_all_users >`_.
42
+ Intercom documentation: `Getting all Users <http://doc .intercom.io/api/v1/#getting-all-users >`_.
43
43
44
44
::
45
45
@@ -50,16 +50,16 @@ Intercom documentation: `Getting all Users <http://api.intercom.io/docs#getting_
50
50
Getting a User
51
51
++++++++++++++
52
52
53
- Intercom documentation: `Getting a User <http://api .intercom.io/docs#getting_a_user >`_.
53
+ Intercom documentation: `Getting a User <http://doc .intercom.io/api/v1/#getting-a-user >`_.
54
54
55
55
::
56
56
57
57
user = User.find(email="ben@intercom.io")
58
58
59
- Creating a User
60
- +++++++++++++++
59
+ Create a User
60
+ +++++++++++++
61
61
62
- Intercom documentation: `Creating a User <http://api .intercom.io/docs#creating_a_user >`_.
62
+ Intercom documentation: `Create a User <http://doc .intercom.io/api/v1/#create-a-user >`_.
63
63
64
64
::
65
65
@@ -74,7 +74,7 @@ Intercom documentation: `Creating a User <http://api.intercom.io/docs#creating_a
74
74
Updating a User
75
75
+++++++++++++++
76
76
77
- Intercom documentation: `Updating a User <http://api .intercom.io/docs#updating_a_user >`_.
77
+ Intercom documentation: `Updating a User <http://doc .intercom.io/api/v1/#updating-a-user >`_.
78
78
79
79
::
80
80
@@ -85,7 +85,7 @@ Intercom documentation: `Updating a User <http://api.intercom.io/docs#updating_a
85
85
Deleting a User
86
86
+++++++++++++++
87
87
88
- Intercom documentation: `Deleting a User <http://api .intercom.io/docs#deleting_a_user >`_.
88
+ Intercom documentation: `Deleting a User <http://doc .intercom.io/api/v1/#deleting-a-user >`_.
89
89
90
90
::
91
91
97
97
Creating a Note
98
98
+++++++++++++++
99
99
100
- Intercom documentation: `Creating a Note <http://api .intercom.io/docs#creating_a_note >`_.
100
+ Intercom documentation: `Creating a Note <http://doc .intercom.io/api/v1/#creating-a-note >`_.
101
101
102
102
::
103
103
@@ -112,27 +112,27 @@ Tagging
112
112
Getting a Tag
113
113
+++++++++++++
114
114
115
- Intercom documentation: `Getting a Tag <http://api .intercom.io/docs#getting_a_tag >`_.
115
+ Intercom documentation: `Getting a Tag <http://doc .intercom.io/api/v1/#getting-a-tag >`_.
116
116
117
117
::
118
118
119
119
from intercom import Tag
120
120
tag = Tag.find_by_name("Free Trial")
121
121
122
- Creating a Tag
123
- ++++++++++++++
122
+ Creating a new Tag
123
+ ++++++++++++++++++
124
124
125
- Intercom documentation: `Creating a Tag <http://api .intercom.io/docs#creating_a_tag >`_.
125
+ Intercom documentation: `Creating a new Tag <http://doc .intercom.io/api/v1/#create-a-new-tag >`_.
126
126
127
127
::
128
128
129
129
from intercom import Tag
130
130
tag = Tag.create("Free Trial")
131
131
132
- Updating a Tag
133
- ++++++++++++++
132
+ Updating an already existing Tag
133
+ ++++++++++++++++++++++++++++++++
134
134
135
- Intercom documentation: `Updating a Tag <http://api .intercom.io/docs#updating_a_tag >`_.
135
+ Intercom documentation: `Updating a Tag <http://doc .intercom.io/api/v1/#update-an-already-existing-tag >`_.
136
136
137
137
::
138
138
@@ -147,7 +147,7 @@ Impressions
147
147
Creating an Impression
148
148
++++++++++++++++++++++
149
149
150
- Intercom documentation: `Creating an Impression <http://api .intercom.io/docs#creating_an_impression >`_.
150
+ Intercom documentation: `Creating an Impression <http://doc .intercom.io/api/v1/#creating-an-impression >`_.
151
151
152
152
::
153
153
@@ -161,7 +161,7 @@ Message Threads
161
161
Getting Message Threads
162
162
+++++++++++++++++++++++
163
163
164
- Intercom documentation: `Getting Message Threads <http://api .intercom.io/docs#getting_messages >`_.
164
+ Intercom documentation: `Getting Message Threads <http://doc .intercom.io/api/v1/#getting-message-threads >`_.
165
165
166
166
::
167
167
@@ -177,7 +177,7 @@ Intercom documentation: `Getting Message Threads <http://api.intercom.io/docs#g
177
177
Creating a Message Thread
178
178
+++++++++++++++++++++++++
179
179
180
- Intercom documentation: `Creating a Message Thread <http://api .intercom.io/docs#creating_a_message >`_.
180
+ Intercom documentation: `Creating a Message Thread <http://doc .intercom.io/api/v1/#creating-a-message-thread >`_.
181
181
182
182
::
183
183
@@ -187,7 +187,7 @@ Intercom documentation: `Creating a Message Thread <http://api.intercom.io/docs
187
187
Replying on a Message Thread
188
188
++++++++++++++++++++++++++++
189
189
190
- Intercom documentation: `Replying on a Message Thread <http://api .intercom.io/docs#replying_to_a_message >`_.
190
+ Intercom documentation: `Replying on a Message Thread <http://doc .intercom.io/api/v1/#replying-on-a-message-thread >`_.
191
191
192
192
::
193
193
0 commit comments