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
Defines the action to perform: - `add`: Adds the customer profile to the audience. Note: If the customer profile does not exist, it will be created. The profile will not be visible in any Application until a session or profile update is received for that profile. - `delete`: Removes the customer profile from the audience.
profile_integration_id
str
The ID of this customer profile in the third-party integration.
audience_id
int
The ID of the audience. You get it via the `id` property when creating an audience.
Example
fromtalon_one.models.customer_profile_audience_request_itemimportCustomerProfileAudienceRequestItem# TODO update the JSON string belowjson="{}"# create an instance of CustomerProfileAudienceRequestItem from a JSON stringcustomer_profile_audience_request_item_instance=CustomerProfileAudienceRequestItem.from_json(json)
# print the JSON string representation of the objectprint(CustomerProfileAudienceRequestItem.to_json())
# convert the object into a dictcustomer_profile_audience_request_item_dict=customer_profile_audience_request_item_instance.to_dict()
# create an instance of CustomerProfileAudienceRequestItem from a dictcustomer_profile_audience_request_item_from_dict=CustomerProfileAudienceRequestItem.from_dict(customer_profile_audience_request_item_dict)