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
When using the `dry` query parameter, use this property to list the campaign to be evaluated by the Rule Engine. These campaigns will be evaluated, even if they are disabled, allowing you to test specific campaigns before activating them.
[optional]
response_content
List[str]
Extends the response with the chosen data entities. Use this property to get as much data back as needed from one request instead of sending extra requests to other endpoints.
fromtalon_one.models.customer_profile_integration_request_v2importCustomerProfileIntegrationRequestV2# TODO update the JSON string belowjson="{}"# create an instance of CustomerProfileIntegrationRequestV2 from a JSON stringcustomer_profile_integration_request_v2_instance=CustomerProfileIntegrationRequestV2.from_json(json)
# print the JSON string representation of the objectprint(CustomerProfileIntegrationRequestV2.to_json())
# convert the object into a dictcustomer_profile_integration_request_v2_dict=customer_profile_integration_request_v2_instance.to_dict()
# create an instance of CustomerProfileIntegrationRequestV2 from a dictcustomer_profile_integration_request_v2_from_dict=CustomerProfileIntegrationRequestV2.from_dict(customer_profile_integration_request_v2_dict)