You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can pass any keyword arguments to the `identify` and `track` methods. These kwargs will be converted to custom attributes.
71
71
72
-
See original REST documentation [here](http://customer.io/docs/api/rest.html#section-Track_a_custom_event)
72
+
See original REST documentation [here](http://customer.io/docs/api/track/#operation/track)
73
73
74
74
### Backfill a custom event
75
75
@@ -94,7 +94,7 @@ Event timestamp may be passed as a ```datetime.datetime``` object, an integer or
94
94
95
95
Keyword arguments to backfill work the same as a call to ```cio.track```.
96
96
97
-
See original REST documentation [here](http://customer.io/docs/api/rest.html#section-Track_a_custom_event)
97
+
See original REST documentation [here](http://customer.io/docs/api/track/#operation/track)
98
98
99
99
### Track an anonymous event
100
100
@@ -106,7 +106,7 @@ An anonymous event is an event associated with a person you haven't identified.
106
106
107
107
#### Anonymous invite events
108
108
109
-
If you previously sent [invite events](https://customer.io/docs/anonymous-invite-emails/), you can achieve the same functionality by sending an anonymous event with the anonymous identifier set to `None`. To send anonymous invites, your event *must* include a `recipient` attribute.
109
+
If you previously sent [invite events](https://customer.io/docs/journeys/anonymous-invite-emails/), you can achieve the same functionality by sending an anonymous event with the anonymous identifier set to `None`. To send anonymous invites, your event *must* include a `recipient` attribute.
@@ -121,7 +121,7 @@ Deletes the customer profile for a specified customer.
121
121
122
122
This method returns nothing. Attempts to delete non-existent customers will not raise any errors.
123
123
124
-
See original REST documentation [here](http://customer.io/docs/api/rest.html#section-Deleting_customers)
124
+
See original REST documentation [here](https://customer.io/docs/api/track/#operation/delete)
125
125
126
126
127
127
You can pass any keyword arguments to the `identify` and `track` methods. These kwargs will be converted to custom attributes.
@@ -174,7 +174,7 @@ cio.suppress(customer_id="1")
174
174
175
175
Suppresses the specified customer. They will be deleted from Customer.io, and we will ignore all further attempts to identify or track activity for the suppressed customer ID
176
176
177
-
See REST documentation [here](https://learn.customer.io/api/#apisuppress_add)
177
+
See REST documentation [here](https://customer.io/docs/api/track/#operation/suppress)
Unsuppresses the specified customer. We will remove the supplied id from our suppression list and start accepting new identify and track calls for the customer as normal
185
185
186
-
See REST documentation [here](https://learn.customer.io/api/#apisuppress_delete)
186
+
See REST documentation [here](https://customer.io/docs/api/track/#operation/unsuppress)
187
187
188
188
### Send Transactional Messages
189
189
190
-
To use the [Transactional API](https://customer.io/docs/transactional-api), instantiate the Customer.io object using an [app key](https://customer.io/docs/managing-credentials#app-api-keys) and create a request object for your message type.
190
+
To use the [Transactional API](https://customer.io/docs/journeys/transactional-api), instantiate the Customer.io object using an [app key](https://customer.io/docs/managing-credentials#app-api-keys) and create a request object for your message type.
191
191
192
192
## Email
193
193
@@ -198,7 +198,7 @@ SendEmailRequest requires:
198
198
* a `message_data` object containing properties that you want reference in your message using Liquid.
199
199
* You can also send attachments with your message. Use `attach` to encode attachments.
200
200
201
-
Use `send_email` referencing your request to send a transactional message. [Learn more about transactional messages and `SendEmailRequest` properties](https://customer.io/docs/transactional-api).
201
+
Use `send_email` referencing your request to send a transactional message. [Learn more about transactional messages and `SendEmailRequest` properties](https://customer.io/docs/journeys/transactional-api).
202
202
203
203
```python
204
204
from customerio import APIClient, Regions, SendEmailRequest
@@ -235,7 +235,7 @@ SendPushRequest requires:
235
235
*`transactional_message_id`: the ID of the transactional push message you want to send.
236
236
* an `identifiers` object containing the `id` or `email` of your recipient. If the profile does not exist, Customer.io will create it.
237
237
238
-
Use `send_push` referencing your request to send a transactional message. [Learn more about transactional messages and `SendPushRequest` properties](https://customer.io/docs/transactional-api).
238
+
Use `send_push` referencing your request to send a transactional message. [Learn more about transactional messages and `SendPushRequest` properties](https://customer.io/docs/journeys/transactional-api).
239
239
240
240
```python
241
241
from customerio import APIClient, Regions, SendPushRequest
0 commit comments