# TalonOne::IntegrationApi All URIs are relative to *http://localhost* Method | HTTP request | Description ------------- | ------------- | ------------- [**create_coupon_reservation**](IntegrationApi.md#create_coupon_reservation) | **POST** /v1/coupon_reservations/{couponValue} | Create a new coupon reservation [**create_referral**](IntegrationApi.md#create_referral) | **POST** /v1/referrals | Create a referral code for an advocate [**delete_coupon_reservation**](IntegrationApi.md#delete_coupon_reservation) | **DELETE** /v1/coupon_reservations/{couponValue} | Delete coupon reservations [**delete_customer_data**](IntegrationApi.md#delete_customer_data) | **DELETE** /v1/customer_data/{integrationId} | Delete the personal data of a customer. [**get_customer_inventory**](IntegrationApi.md#get_customer_inventory) | **GET** /v1/customer_profiles/{integrationId}/inventory | Get an inventory of all data associated with a specific customer profile. [**get_reserved_customers**](IntegrationApi.md#get_reserved_customers) | **GET** /v1/coupon_reservations/customerprofiles/{couponValue} | Get the users that have this coupon reserved [**track_event**](IntegrationApi.md#track_event) | **POST** /v1/events | Track an Event [**update_customer_profile**](IntegrationApi.md#update_customer_profile) | **PUT** /v1/customer_profiles/{integrationId} | Update a Customer Profile V1 [**update_customer_profile_audiences**](IntegrationApi.md#update_customer_profile_audiences) | **POST** /v2/customer_audiences | Update a Customer Profile Audiences [**update_customer_profile_v2**](IntegrationApi.md#update_customer_profile_v2) | **PUT** /v2/customer_profiles/{integrationId} | Update a Customer Profile [**update_customer_profiles_v2**](IntegrationApi.md#update_customer_profiles_v2) | **PUT** /v2/customer_profiles | Update multiple Customer Profiles [**update_customer_session**](IntegrationApi.md#update_customer_session) | **PUT** /v1/customer_sessions/{customerSessionId} | Update a Customer Session V1 [**update_customer_session_v2**](IntegrationApi.md#update_customer_session_v2) | **PUT** /v2/customer_sessions/{customerSessionId} | Update a Customer Session ## create_coupon_reservation > Coupon create_coupon_reservation(coupon_value, body) Create a new coupon reservation Creates a coupon reservation for all passed customer profiles on this couponID ### Example ```ruby # load the gem require 'talon_one' # setup authorization TalonOne.configure do |config| # Configure API key authorization: api_key_v1 config.api_key['Authorization'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Authorization'] = 'Bearer' # Configure API key authorization: integration_auth config.api_key['Content-Signature'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Content-Signature'] = 'Bearer' end api_instance = TalonOne::IntegrationApi.new coupon_value = 'coupon_value_example' # String | The value of a coupon body = TalonOne::CouponReservations.new # CouponReservations | begin #Create a new coupon reservation result = api_instance.create_coupon_reservation(coupon_value, body) p result rescue TalonOne::ApiError => e puts "Exception when calling IntegrationApi->create_coupon_reservation: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **coupon_value** | **String**| The value of a coupon | **body** | [**CouponReservations**](CouponReservations.md)| | ### Return type [**Coupon**](Coupon.md) ### Authorization [api_key_v1](../README.md#api_key_v1), [integration_auth](../README.md#integration_auth) ### HTTP request headers - **Content-Type**: application/json - **Accept**: application/json ## create_referral > Referral create_referral(body) Create a referral code for an advocate Creates a referral code for an advocate. The code will be valid for the referral campaign for which is created, indicated in the `campaignId` parameter, and will be associated with the profile specified in the `advocateProfileIntegrationId` parameter as the advocate's profile. ### Example ```ruby # load the gem require 'talon_one' # setup authorization TalonOne.configure do |config| # Configure API key authorization: api_key_v1 config.api_key['Authorization'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Authorization'] = 'Bearer' # Configure API key authorization: integration_auth config.api_key['Content-Signature'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Content-Signature'] = 'Bearer' end api_instance = TalonOne::IntegrationApi.new body = TalonOne::NewReferral.new # NewReferral | begin #Create a referral code for an advocate result = api_instance.create_referral(body) p result rescue TalonOne::ApiError => e puts "Exception when calling IntegrationApi->create_referral: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **body** | [**NewReferral**](NewReferral.md)| | ### Return type [**Referral**](Referral.md) ### Authorization [api_key_v1](../README.md#api_key_v1), [integration_auth](../README.md#integration_auth) ### HTTP request headers - **Content-Type**: application/json - **Accept**: application/json ## delete_coupon_reservation > delete_coupon_reservation(coupon_value, body) Delete coupon reservations Removes all passed customer profiles reservation from this coupon ### Example ```ruby # load the gem require 'talon_one' # setup authorization TalonOne.configure do |config| # Configure API key authorization: api_key_v1 config.api_key['Authorization'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Authorization'] = 'Bearer' # Configure API key authorization: integration_auth config.api_key['Content-Signature'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Content-Signature'] = 'Bearer' end api_instance = TalonOne::IntegrationApi.new coupon_value = 'coupon_value_example' # String | The value of a coupon body = TalonOne::CouponReservations.new # CouponReservations | begin #Delete coupon reservations api_instance.delete_coupon_reservation(coupon_value, body) rescue TalonOne::ApiError => e puts "Exception when calling IntegrationApi->delete_coupon_reservation: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **coupon_value** | **String**| The value of a coupon | **body** | [**CouponReservations**](CouponReservations.md)| | ### Return type nil (empty response body) ### Authorization [api_key_v1](../README.md#api_key_v1), [integration_auth](../README.md#integration_auth) ### HTTP request headers - **Content-Type**: application/json - **Accept**: Not defined ## delete_customer_data > delete_customer_data(integration_id) Delete the personal data of a customer. Delete all attributes on the customer profile and on entities that reference that customer profile. ### Example ```ruby # load the gem require 'talon_one' # setup authorization TalonOne.configure do |config| # Configure API key authorization: api_key_v1 config.api_key['Authorization'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Authorization'] = 'Bearer' # Configure API key authorization: integration_auth config.api_key['Content-Signature'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Content-Signature'] = 'Bearer' end api_instance = TalonOne::IntegrationApi.new integration_id = 'integration_id_example' # String | The custom identifier for this profile, must be unique within the account. begin #Delete the personal data of a customer. api_instance.delete_customer_data(integration_id) rescue TalonOne::ApiError => e puts "Exception when calling IntegrationApi->delete_customer_data: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **integration_id** | **String**| The custom identifier for this profile, must be unique within the account. | ### Return type nil (empty response body) ### Authorization [api_key_v1](../README.md#api_key_v1), [integration_auth](../README.md#integration_auth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: Not defined ## get_customer_inventory > CustomerInventory get_customer_inventory(integration_id, opts) Get an inventory of all data associated with a specific customer profile. Get information regarding entities referencing this customer profile's integrationId. Currently we support customer profile information, referral codes and reserved coupons. In the future, this will be expanded with loyalty points. ### Example ```ruby # load the gem require 'talon_one' # setup authorization TalonOne.configure do |config| # Configure API key authorization: api_key_v1 config.api_key['Authorization'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Authorization'] = 'Bearer' # Configure API key authorization: integration_auth config.api_key['Content-Signature'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Content-Signature'] = 'Bearer' end api_instance = TalonOne::IntegrationApi.new integration_id = 'integration_id_example' # String | The custom identifier for this profile, must be unique within the account. opts = { profile: true, # Boolean | optional flag to decide if you would like customer profile information in the response referrals: true, # Boolean | optional flag to decide if you would like referral information in the response coupons: true, # Boolean | optional flag to decide if you would like coupon information in the response loyalty: true # Boolean | optional flag to decide if you would like loyalty information in the response } begin #Get an inventory of all data associated with a specific customer profile. result = api_instance.get_customer_inventory(integration_id, opts) p result rescue TalonOne::ApiError => e puts "Exception when calling IntegrationApi->get_customer_inventory: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **integration_id** | **String**| The custom identifier for this profile, must be unique within the account. | **profile** | **Boolean**| optional flag to decide if you would like customer profile information in the response | [optional] **referrals** | **Boolean**| optional flag to decide if you would like referral information in the response | [optional] **coupons** | **Boolean**| optional flag to decide if you would like coupon information in the response | [optional] **loyalty** | **Boolean**| optional flag to decide if you would like loyalty information in the response | [optional] ### Return type [**CustomerInventory**](CustomerInventory.md) ### Authorization [api_key_v1](../README.md#api_key_v1), [integration_auth](../README.md#integration_auth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json ## get_reserved_customers > InlineResponse200 get_reserved_customers(coupon_value) Get the users that have this coupon reserved Returns all users that have this coupon marked as reserved ### Example ```ruby # load the gem require 'talon_one' # setup authorization TalonOne.configure do |config| # Configure API key authorization: api_key_v1 config.api_key['Authorization'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Authorization'] = 'Bearer' # Configure API key authorization: integration_auth config.api_key['Content-Signature'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Content-Signature'] = 'Bearer' end api_instance = TalonOne::IntegrationApi.new coupon_value = 'coupon_value_example' # String | The value of a coupon begin #Get the users that have this coupon reserved result = api_instance.get_reserved_customers(coupon_value) p result rescue TalonOne::ApiError => e puts "Exception when calling IntegrationApi->get_reserved_customers: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **coupon_value** | **String**| The value of a coupon | ### Return type [**InlineResponse200**](InlineResponse200.md) ### Authorization [api_key_v1](../README.md#api_key_v1), [integration_auth](../README.md#integration_auth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json ## track_event > IntegrationState track_event(body, opts) Track an Event Records an arbitrary event in a customer session. For example, an integration might record an event when a user updates their payment information. The `sessionId` body parameter is required, an event is always part of a session. Much like updating a customer session, if either the profile or the session do not exist, a new empty one will be created. Note that if the specified session already exists, it must belong to the same `profileId` or an error will be returned. As with customer sessions, you can use an empty string for `profileId` to indicate that this is an anonymous session. Updating a customer profile will return a response with the full integration state. This includes the current state of the customer profile, the customer session, the event that was recorded, and an array of effects that took place. ### Example ```ruby # load the gem require 'talon_one' # setup authorization TalonOne.configure do |config| # Configure API key authorization: api_key_v1 config.api_key['Authorization'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Authorization'] = 'Bearer' # Configure API key authorization: integration_auth config.api_key['Content-Signature'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Content-Signature'] = 'Bearer' end api_instance = TalonOne::IntegrationApi.new body = TalonOne::NewEvent.new # NewEvent | opts = { dry: true # Boolean | Flag to indicate whether to skip persisting the changes or not (Will not persist if set to 'true'). } begin #Track an Event result = api_instance.track_event(body, opts) p result rescue TalonOne::ApiError => e puts "Exception when calling IntegrationApi->track_event: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **body** | [**NewEvent**](NewEvent.md)| | **dry** | **Boolean**| Flag to indicate whether to skip persisting the changes or not (Will not persist if set to 'true'). | [optional] ### Return type [**IntegrationState**](IntegrationState.md) ### Authorization [api_key_v1](../README.md#api_key_v1), [integration_auth](../README.md#integration_auth) ### HTTP request headers - **Content-Type**: application/json - **Accept**: application/json ## update_customer_profile > IntegrationState update_customer_profile(integration_id, body, opts) Update a Customer Profile V1 ⚠️ Deprecation Notice: Support for requests to this endpoint will end on 15.07.2021. We will not remove the endpoint, and it will still be accessible for you to use. For new features support, please migrate to [API V2.0](/Getting-Started/APIV2). Update (or create) a [Customer Profile][]. This profile information can then be matched and/or updated by campaign [Rules][]. The `integrationId` may be any identifier that will remain stable for the customer. For example, you might use a database ID, an email, or a phone number as the `integrationId`. It is vital that this ID **not** change over time, so **don't** use any identifier that the customer can update themselves. E.g. if your application allows a customer to update their e-mail address, you should instead use a database ID. Updating a customer profile will return a response with the full integration state. This includes the current state of the customer profile, the customer session, the event that was recorded, and an array of effects that took place. [Customer Profile]: /Getting-Started/entities#customer-profile [Rules]: /Getting-Started/entities#campaigns-rulesets-and-coupons ### Example ```ruby # load the gem require 'talon_one' # setup authorization TalonOne.configure do |config| # Configure API key authorization: api_key_v1 config.api_key['Authorization'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Authorization'] = 'Bearer' # Configure API key authorization: integration_auth config.api_key['Content-Signature'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Content-Signature'] = 'Bearer' end api_instance = TalonOne::IntegrationApi.new integration_id = 'integration_id_example' # String | The custom identifier for this profile, must be unique within the account. body = TalonOne::NewCustomerProfile.new # NewCustomerProfile | opts = { dry: true # Boolean | Flag to indicate whether to skip persisting the changes or not (Will not persist if set to 'true'). } begin #Update a Customer Profile V1 result = api_instance.update_customer_profile(integration_id, body, opts) p result rescue TalonOne::ApiError => e puts "Exception when calling IntegrationApi->update_customer_profile: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **integration_id** | **String**| The custom identifier for this profile, must be unique within the account. | **body** | [**NewCustomerProfile**](NewCustomerProfile.md)| | **dry** | **Boolean**| Flag to indicate whether to skip persisting the changes or not (Will not persist if set to 'true'). | [optional] ### Return type [**IntegrationState**](IntegrationState.md) ### Authorization [api_key_v1](../README.md#api_key_v1), [integration_auth](../README.md#integration_auth) ### HTTP request headers - **Content-Type**: application/json - **Accept**: application/json ## update_customer_profile_audiences > update_customer_profile_audiences(body) Update a Customer Profile Audiences Update one ore multiple Customer Profiles with the specified Audiences ### Example ```ruby # load the gem require 'talon_one' # setup authorization TalonOne.configure do |config| # Configure API key authorization: api_key_v1 config.api_key['Authorization'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Authorization'] = 'Bearer' end api_instance = TalonOne::IntegrationApi.new body = TalonOne::CustomerProfileAudienceRequest.new # CustomerProfileAudienceRequest | begin #Update a Customer Profile Audiences api_instance.update_customer_profile_audiences(body) rescue TalonOne::ApiError => e puts "Exception when calling IntegrationApi->update_customer_profile_audiences: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **body** | [**CustomerProfileAudienceRequest**](CustomerProfileAudienceRequest.md)| | ### Return type nil (empty response body) ### Authorization [api_key_v1](../README.md#api_key_v1) ### HTTP request headers - **Content-Type**: application/json - **Accept**: Not defined ## update_customer_profile_v2 > IntegrationStateV2 update_customer_profile_v2(integration_id, body, opts) Update a Customer Profile Update (or create) a [Customer Profile][]. The `integrationId` may be any identifier that will remain stable for the customer. For example, you might use a database ID, an email, or a phone number as the `integrationId`. It is vital that this ID **not** change over time, so **don't** use any identifier that the customer can update themselves. E.g. if your application allows a customer to update their e-mail address, you should instead use a database ID. [Customer Profile]: /Getting-Started/entities#customer-profile ### Example ```ruby # load the gem require 'talon_one' # setup authorization TalonOne.configure do |config| # Configure API key authorization: api_key_v1 config.api_key['Authorization'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Authorization'] = 'Bearer' end api_instance = TalonOne::IntegrationApi.new integration_id = 'integration_id_example' # String | The custom identifier for this profile, must be unique within the account. body = TalonOne::CustomerProfileIntegrationRequestV2.new # CustomerProfileIntegrationRequestV2 | opts = { run_rule_engine: true, # Boolean | Flag to indicate whether to run the rule engine (Defaults to false). dry: true # Boolean | Flag to indicate whether to skip persisting the changes or not (Will not persist if set to 'true'. Only used when 'runRuleEngine' is set to 'true'). } begin #Update a Customer Profile result = api_instance.update_customer_profile_v2(integration_id, body, opts) p result rescue TalonOne::ApiError => e puts "Exception when calling IntegrationApi->update_customer_profile_v2: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **integration_id** | **String**| The custom identifier for this profile, must be unique within the account. | **body** | [**CustomerProfileIntegrationRequestV2**](CustomerProfileIntegrationRequestV2.md)| | **run_rule_engine** | **Boolean**| Flag to indicate whether to run the rule engine (Defaults to false). | [optional] **dry** | **Boolean**| Flag to indicate whether to skip persisting the changes or not (Will not persist if set to 'true'. Only used when 'runRuleEngine' is set to 'true'). | [optional] ### Return type [**IntegrationStateV2**](IntegrationStateV2.md) ### Authorization [api_key_v1](../README.md#api_key_v1) ### HTTP request headers - **Content-Type**: application/json - **Accept**: application/json ## update_customer_profiles_v2 > MultipleCustomerProfileIntegrationResponseV2 update_customer_profiles_v2(body, opts) Update multiple Customer Profiles Update (or create) up to 1000 [Customer Profiles][] in 1 request. The `integrationId` may be any identifier that will remain stable for the customer. For example, you might use a database ID, an email, or a phone number as the `integrationId`. It is vital that this ID **not** change over time, so **don't** use any identifier that the customer can update themselves. E.g. if your application allows a customer to update their e-mail address, you should instead use a database ID. [Customer Profiles]: /Getting-Started/entities#customer-profile ### Example ```ruby # load the gem require 'talon_one' # setup authorization TalonOne.configure do |config| # Configure API key authorization: api_key_v1 config.api_key['Authorization'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Authorization'] = 'Bearer' end api_instance = TalonOne::IntegrationApi.new body = TalonOne::MultipleCustomerProfileIntegrationRequest.new # MultipleCustomerProfileIntegrationRequest | opts = { silent: 'silent_example' # String | If set to 'yes', response will be an empty 204, otherwise a list of the IntegrationStateV2 generated. } begin #Update multiple Customer Profiles result = api_instance.update_customer_profiles_v2(body, opts) p result rescue TalonOne::ApiError => e puts "Exception when calling IntegrationApi->update_customer_profiles_v2: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **body** | [**MultipleCustomerProfileIntegrationRequest**](MultipleCustomerProfileIntegrationRequest.md)| | **silent** | **String**| If set to 'yes', response will be an empty 204, otherwise a list of the IntegrationStateV2 generated. | [optional] ### Return type [**MultipleCustomerProfileIntegrationResponseV2**](MultipleCustomerProfileIntegrationResponseV2.md) ### Authorization [api_key_v1](../README.md#api_key_v1) ### HTTP request headers - **Content-Type**: application/json - **Accept**: application/json ## update_customer_session > IntegrationState update_customer_session(customer_session_id, body, opts) Update a Customer Session V1 ⚠️ Deprecation Notice: Support for requests to this endpoint will end on 15.07.2021. We will not remove the endpoint, and it will still be accessible for you to use. For new features support, please migrate to [API V2.0](/Getting-Started/APIV2). Update (or create) a [Customer Session][]. For example, the items in a customers cart are part of a session. The Talon.One platform supports multiple simultaneous sessions for the same profile, so if you have multiple ways of accessing the same application you have the option of either tracking multiple independent sessions or using the same session across all of them. You should share sessions when application access points share other state, such as the users cart. If two points of access to the application have independent state (e.g. a user can have different items in their cart across the two) they should use independent customer session ID's. The `profileId` parameter in the request body should correspond to an `integrationId` for a customer profile, to track an anonymous session use the empty string (`\"\"`) as the `profileId`. Note that you do **not** need to create a customer profile first: if the specified profile does not yet exist, an empty profile will be created automatically. Updating a customer profile will return a response with the full integration state. This includes the current state of the customer profile, the customer session, the event that was recorded, and an array of effects that took place. The currency for the session and the cart items in the session is the same as that of the application with which the session is associated. [Customer Session]: /Getting-Started/entities#customer-session ### Example ```ruby # load the gem require 'talon_one' # setup authorization TalonOne.configure do |config| # Configure API key authorization: api_key_v1 config.api_key['Authorization'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Authorization'] = 'Bearer' # Configure API key authorization: integration_auth config.api_key['Content-Signature'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Content-Signature'] = 'Bearer' end api_instance = TalonOne::IntegrationApi.new customer_session_id = 'customer_session_id_example' # String | The custom identifier for this session, must be unique within the account. body = TalonOne::NewCustomerSession.new # NewCustomerSession | opts = { dry: true # Boolean | Flag to indicate whether to skip persisting the changes or not (Will not persist if set to 'true'). } begin #Update a Customer Session V1 result = api_instance.update_customer_session(customer_session_id, body, opts) p result rescue TalonOne::ApiError => e puts "Exception when calling IntegrationApi->update_customer_session: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **customer_session_id** | **String**| The custom identifier for this session, must be unique within the account. | **body** | [**NewCustomerSession**](NewCustomerSession.md)| | **dry** | **Boolean**| Flag to indicate whether to skip persisting the changes or not (Will not persist if set to 'true'). | [optional] ### Return type [**IntegrationState**](IntegrationState.md) ### Authorization [api_key_v1](../README.md#api_key_v1), [integration_auth](../README.md#integration_auth) ### HTTP request headers - **Content-Type**: application/json - **Accept**: application/json ## update_customer_session_v2 > IntegrationStateV2 update_customer_session_v2(customer_session_id, body, opts) Update a Customer Session Update (or create) a [Customer Session][]. For example, the items in a customers cart are part of a session. The Talon.One platform supports multiple simultaneous sessions for the same profile, so if you have multiple ways of accessing the same application you have the option of either tracking multiple independent sessions or using the same session across all of them. You should share sessions when application access points share other state, such as the users cart. If two points of access to the application have independent state (e.g. a user can have different items in their cart across the two) they should use independent customer session ID's. The `profileId` parameter in the request body should correspond to an `integrationId` for a customer profile, to track an anonymous session use the empty string (`\"\"`) as the `profileId`. Note that you do **not** need to create a customer profile first: if the specified profile does not yet exist, an empty profile will be created automatically. Updating a customer profile will return a response with the requested integration state. This includes the effects that were generated due to triggered campaigns, the created coupons and referral objects, as well as any entity that was requested in the request parameter \"responseContent\". The currency for the session and the cart items in the session is the same as that of the application with which the session is associated. [Customer Session]: /Getting-Started/entities#customer-session ### Example ```ruby # load the gem require 'talon_one' # setup authorization TalonOne.configure do |config| # Configure API key authorization: api_key_v1 config.api_key['Authorization'] = 'YOUR API KEY' # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) #config.api_key_prefix['Authorization'] = 'Bearer' end api_instance = TalonOne::IntegrationApi.new customer_session_id = 'customer_session_id_example' # String | The custom identifier for this session, must be unique within the account. body = TalonOne::IntegrationRequest.new # IntegrationRequest | opts = { dry: true # Boolean | Flag to indicate whether to skip persisting the changes or not (Will not persist if set to 'true'). } begin #Update a Customer Session result = api_instance.update_customer_session_v2(customer_session_id, body, opts) p result rescue TalonOne::ApiError => e puts "Exception when calling IntegrationApi->update_customer_session_v2: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **customer_session_id** | **String**| The custom identifier for this session, must be unique within the account. | **body** | [**IntegrationRequest**](IntegrationRequest.md)| | **dry** | **Boolean**| Flag to indicate whether to skip persisting the changes or not (Will not persist if set to 'true'). | [optional] ### Return type [**IntegrationStateV2**](IntegrationStateV2.md) ### Authorization [api_key_v1](../README.md#api_key_v1) ### HTTP request headers - **Content-Type**: application/json - **Accept**: application/json