This SDK supports all of the operations of Talon.One's Integration API and Management API.
Add this to the Gemfile:
gem 'talon_one', '~> 7.0.0'
To build the Ruby code into a gem:
gem build talon_one.gemspec
To install the gem locally:
gem install ./talon_one-7.0.0.gem
For development, run gem install --dev ./talon_one-7.0.0.gem
to install the development dependencies.
The SDK is available on RubyGems. To install it, run:
gem install talon_one
The following code shows an example of using the Integration API:
# Load the gem
require 'talon_one'
# Setup authorization
TalonOne.configure do |config|
# Configure the API host destination while explicitly using HTTPS as the default is HTTP.
config.scheme = 'https'
config.host = 'yourbaseurl.talon.one'
# Configure API key authorization: api_key_v1
config.api_key['Authorization'] = 'ca1890f0ec3bfa8ed4be04e2aec0c606c0df8ad464f17d3ea8b51df12ba60e5d'
config.api_key_prefix['Authorization'] = 'ApiKey-v1'
end
# Integration API example to send a session update
integration_api = TalonOne::IntegrationApi.new
session_integration_id = '8fb7129e-68e6-4464-9631-09b588391619' # String | The integration identifier of the session
# NewCustomerSessionV2 object
customer_session_v2 = TalonOne::NewCustomerSessionV2.new(
profile_id: 'Some_1',
state: 'open',
cart_items: [
TalonOne::CartItem.new(
name: 'Nigiri Sake',
sku: 'sush1',
quantity: 2,
price: 3.7,
category: 'Sushi'
),
TalonOne::CartItem.new(
name: 'Rainbow Roll I/O',
sku: 'sush2',
quantity: 1,
price: 6.5,
category: 'Sushi'
),
TalonOne::CartItem.new(
name: 'Kirin',
sku: 'k1r',
quantity: 2,
price: 2.2,
category: 'Beverages'
),
],
coupon_codes: [
'Cool-Stuff!'
]
)
# Instantiating a new IntegrationRequest object
integration_request = TalonOne::IntegrationRequest.new(
customer_session: customer_session_v2,
# Optional list of requested information to be present on the response.
# See docs/IntegrationRequest.md for full list
# response_content: [
# 'customerSession'
# ]
)
begin
# Create/update a customer session using `update_customer_session_v2` function
result = integration_api.update_customer_session_v2(session_integration_id, integration_request)
# Prints response to the console
puts result
# Parsing the returned effects list, please consult https://developers.talon.one/Integration-API/handling-effects-v2 for the full list of effects and their corresponding properties
result.effects.each do |effect|
if effect.effect_type == 'setDiscount'
# Initiating right props instance according to the effect type
props = TalonOne::SetDiscountEffectProps.build_from_hash(effect.props)
# Access the specific effect's properties
puts "Set a discount '#{props.name}' of #{props.value}"
elsif effect.effect_type == 'rejectCoupon'
# Initiating right props instance according to the effect type
props = TalonOne::RejectCouponEffectProps.build_from_hash(effect.props)
# Work with AcceptCouponEffectProps' properties
# ...
end
end
rescue TalonOne::ApiError => e
puts "Exception when calling IntegrationApi->update_customer_session_v2: #{e}"
end
The following code shows an example of using the Management API:
# Load the gem
require 'talon_one'
# Setup authorization
TalonOne.configure do |config|
# Configure the API host destination and set scheme to HTTPS
config.scheme = 'https'
config.host = 'yourbaseurl.talon.one'
# Configure API key authorization: management_key
config.api_key['Authorization'] = '2f0dce055da01ae595005d7d79154bae7448d319d5fc7c5b2951fadd6ba1ea07'
config.api_key_prefix['Authorization'] = 'ManagementKey-v1'
end
# Management API example to load application with id 7
management_api = TalonOne::ManagementApi.new
begin
# Calling get_application function with the desired id (7)
result = management_api.get_application(7)
# Print result to the console
puts result
rescue TalonOne::ApiError => e
puts "Exception when calling ManagementApi: #{e}"
end
All URLs are relative to https://yourbaseurl.talon.one
.
Class | Method | HTTP request | Description |
---|---|---|---|
TalonOne::IntegrationApi | create_audience_v2 | POST /v2/audiences | Create audience |
TalonOne::IntegrationApi | create_coupon_reservation | POST /v1/coupon_reservations/{couponValue} | Create coupon reservation |
TalonOne::IntegrationApi | create_referral | POST /v1/referrals | Create referral code for an advocate |
TalonOne::IntegrationApi | create_referrals_for_multiple_advocates | POST /v1/referrals_for_multiple_advocates | Create referral codes for multiple advocates |
TalonOne::IntegrationApi | delete_audience_memberships_v2 | DELETE /v2/audiences/{audienceId}/memberships | Delete audience memberships |
TalonOne::IntegrationApi | delete_audience_v2 | DELETE /v2/audiences/{audienceId} | Delete audience |
TalonOne::IntegrationApi | delete_coupon_reservation | DELETE /v1/coupon_reservations/{couponValue} | Delete coupon reservations |
TalonOne::IntegrationApi | delete_customer_data | DELETE /v1/customer_data/{integrationId} | Delete customer's personal data |
TalonOne::IntegrationApi | generate_loyalty_card | POST /v1/loyalty_programs/{loyaltyProgramId}/cards | Generate loyalty card |
TalonOne::IntegrationApi | get_customer_inventory | GET /v1/customer_profiles/{integrationId}/inventory | List customer data |
TalonOne::IntegrationApi | get_customer_session | GET /v2/customer_sessions/{customerSessionId} | Get customer session |
TalonOne::IntegrationApi | get_loyalty_balances | GET /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/balances | Get customer's loyalty balances |
TalonOne::IntegrationApi | get_loyalty_card_balances | GET /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/balances | Get card's point balances |
TalonOne::IntegrationApi | get_loyalty_card_points | GET /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/points | List card's unused loyalty points |
TalonOne::IntegrationApi | get_loyalty_card_transactions | GET /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/transactions | List card's transactions |
TalonOne::IntegrationApi | get_loyalty_program_profile_points | GET /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/points | List customer's unused loyalty points |
TalonOne::IntegrationApi | get_loyalty_program_profile_transactions | GET /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/transactions | List customer's loyalty transactions |
TalonOne::IntegrationApi | get_reserved_customers | GET /v1/coupon_reservations/customerprofiles/{couponValue} | List customers that have this coupon reserved |
TalonOne::IntegrationApi | link_loyalty_card_to_profile | POST /v2/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/link_profile | Link customer profile to card |
TalonOne::IntegrationApi | reopen_customer_session | PUT /v2/customer_sessions/{customerSessionId}/reopen | Reopen customer session |
TalonOne::IntegrationApi | return_cart_items | POST /v2/customer_sessions/{customerSessionId}/returns | Return cart items |
TalonOne::IntegrationApi | sync_catalog | PUT /v1/catalogs/{catalogId}/sync | Sync cart item catalog |
TalonOne::IntegrationApi | track_event_v2 | POST /v2/events | Track event |
TalonOne::IntegrationApi | update_audience_customers_attributes | PUT /v2/audience_customers/{audienceId}/attributes | Update profile attributes for all customers in audience |
TalonOne::IntegrationApi | update_audience_v2 | PUT /v2/audiences/{audienceId} | Update audience name |
TalonOne::IntegrationApi | update_customer_profile_audiences | POST /v2/customer_audiences | Update multiple customer profiles' audiences |
TalonOne::IntegrationApi | update_customer_profile_v2 | PUT /v2/customer_profiles/{integrationId} | Update customer profile |
TalonOne::IntegrationApi | update_customer_profiles_v2 | PUT /v2/customer_profiles | Update multiple customer profiles |
TalonOne::IntegrationApi | update_customer_session_v2 | PUT /v2/customer_sessions/{customerSessionId} | Update customer session |
TalonOne::ManagementApi | activate_user_by_email | POST /v1/users/activate | Enable user by email address |
TalonOne::ManagementApi | add_loyalty_card_points | PUT /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/add_points | Add points to card |
TalonOne::ManagementApi | add_loyalty_points | PUT /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/add_points | Add points to customer profile |
TalonOne::ManagementApi | copy_campaign_to_applications | POST /v1/applications/{applicationId}/campaigns/{campaignId}/copy | Copy the campaign into the specified Application |
TalonOne::ManagementApi | create_account_collection | POST /v1/collections | Create account-level collection |
TalonOne::ManagementApi | create_achievement | POST /v1/applications/{applicationId}/campaigns/{campaignId}/achievements | Create achievement |
TalonOne::ManagementApi | create_additional_cost | POST /v1/additional_costs | Create additional cost |
TalonOne::ManagementApi | create_attribute | POST /v1/attributes | Create custom attribute |
TalonOne::ManagementApi | create_batch_loyalty_cards | POST /v1/loyalty_programs/{loyaltyProgramId}/cards/batch | Create loyalty cards |
TalonOne::ManagementApi | create_campaign_from_template | POST /v1/applications/{applicationId}/create_campaign_from_template | Create campaign from campaign template |
TalonOne::ManagementApi | create_collection | POST /v1/applications/{applicationId}/campaigns/{campaignId}/collections | Create campaign-level collection |
TalonOne::ManagementApi | create_coupons | POST /v1/applications/{applicationId}/campaigns/{campaignId}/coupons | Create coupons |
TalonOne::ManagementApi | create_coupons_async | POST /v1/applications/{applicationId}/campaigns/{campaignId}/coupons_async | Create coupons asynchronously |
TalonOne::ManagementApi | create_coupons_deletion_job | POST /v1/applications/{applicationId}/campaigns/{campaignId}/coupons_deletion_jobs | Creates a coupon deletion job |
TalonOne::ManagementApi | create_coupons_for_multiple_recipients | POST /v1/applications/{applicationId}/campaigns/{campaignId}/coupons_with_recipients | Create coupons for multiple recipients |
TalonOne::ManagementApi | create_invite_email | POST /v1/invite_emails | Resend invitation email |
TalonOne::ManagementApi | create_invite_v2 | POST /v2/invites | Invite user |
TalonOne::ManagementApi | create_password_recovery_email | POST /v1/password_recovery_emails | Request a password reset |
TalonOne::ManagementApi | create_session | POST /v1/sessions | Create session |
TalonOne::ManagementApi | create_store | POST /v1/applications/{applicationId}/stores | Create store |
TalonOne::ManagementApi | deactivate_user_by_email | POST /v1/users/deactivate | Disable user by email address |
TalonOne::ManagementApi | deduct_loyalty_card_points | PUT /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/deduct_points | Deduct points from card |
TalonOne::ManagementApi | delete_account_collection | DELETE /v1/collections/{collectionId} | Delete account-level collection |
TalonOne::ManagementApi | delete_achievement | DELETE /v1/applications/{applicationId}/campaigns/{campaignId}/achievements/{achievementId} | Delete achievement |
TalonOne::ManagementApi | delete_campaign | DELETE /v1/applications/{applicationId}/campaigns/{campaignId} | Delete campaign |
TalonOne::ManagementApi | delete_collection | DELETE /v1/applications/{applicationId}/campaigns/{campaignId}/collections/{collectionId} | Delete campaign-level collection |
TalonOne::ManagementApi | delete_coupon | DELETE /v1/applications/{applicationId}/campaigns/{campaignId}/coupons/{couponId} | Delete coupon |
TalonOne::ManagementApi | delete_coupons | DELETE /v1/applications/{applicationId}/campaigns/{campaignId}/coupons | Delete coupons |
TalonOne::ManagementApi | delete_loyalty_card | DELETE /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId} | Delete loyalty card |
TalonOne::ManagementApi | delete_referral | DELETE /v1/applications/{applicationId}/campaigns/{campaignId}/referrals/{referralId} | Delete referral |
TalonOne::ManagementApi | delete_store | DELETE /v1/applications/{applicationId}/stores/{storeId} | Delete store |
TalonOne::ManagementApi | delete_user | DELETE /v1/users/{userId} | Delete user |
TalonOne::ManagementApi | delete_user_by_email | POST /v1/users/delete | Delete user by email address |
TalonOne::ManagementApi | destroy_session | DELETE /v1/sessions | Destroy session |
TalonOne::ManagementApi | disconnect_campaign_stores | DELETE /v1/applications/{applicationId}/campaigns/{campaignId}/stores | Disconnect stores |
TalonOne::ManagementApi | export_account_collection_items | GET /v1/collections/{collectionId}/export | Export account-level collection's items |
TalonOne::ManagementApi | export_achievements | GET /v1/applications/{applicationId}/campaigns/{campaignId}/achievements/{achievementId}/export | Export achievement customer data |
TalonOne::ManagementApi | export_audiences_memberships | GET /v1/audiences/{audienceId}/memberships/export | Export audience members |
TalonOne::ManagementApi | export_campaign_stores | GET /v1/applications/{applicationId}/campaigns/{campaignId}/stores/export | Export stores |
TalonOne::ManagementApi | export_collection_items | GET /v1/applications/{applicationId}/campaigns/{campaignId}/collections/{collectionId}/export | Export campaign-level collection's items |
TalonOne::ManagementApi | export_coupons | GET /v1/applications/{applicationId}/export_coupons | Export coupons |
TalonOne::ManagementApi | export_customer_sessions | GET /v1/applications/{applicationId}/export_customer_sessions | Export customer sessions |
TalonOne::ManagementApi | export_customers_tiers | GET /v1/loyalty_programs/{loyaltyProgramId}/export_customers_tiers | Export customers' tier data |
TalonOne::ManagementApi | export_effects | GET /v1/applications/{applicationId}/export_effects | Export triggered effects |
TalonOne::ManagementApi | export_loyalty_balance | GET /v1/loyalty_programs/{loyaltyProgramId}/export_customer_balance | Export customer loyalty balance to CSV |
TalonOne::ManagementApi | export_loyalty_balances | GET /v1/loyalty_programs/{loyaltyProgramId}/export_customer_balances | Export customer loyalty balances |
TalonOne::ManagementApi | export_loyalty_card_balances | GET /v1/loyalty_programs/{loyaltyProgramId}/export_card_balances | Export all card transaction logs |
TalonOne::ManagementApi | export_loyalty_card_ledger | GET /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/export_log | Export card's ledger log |
TalonOne::ManagementApi | export_loyalty_cards | GET /v1/loyalty_programs/{loyaltyProgramId}/cards/export | Export loyalty cards |
TalonOne::ManagementApi | export_loyalty_ledger | GET /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/export_log | Export customer's transaction logs |
TalonOne::ManagementApi | export_pool_giveaways | GET /v1/giveaways/pools/{poolId}/export | Export giveaway codes of a giveaway pool |
TalonOne::ManagementApi | export_referrals | GET /v1/applications/{applicationId}/export_referrals | Export referrals |
TalonOne::ManagementApi | get_access_logs_without_total_count | GET /v1/applications/{applicationId}/access_logs/no_total | Get access logs for Application |
TalonOne::ManagementApi | get_account | GET /v1/accounts/{accountId} | Get account details |
TalonOne::ManagementApi | get_account_analytics | GET /v1/accounts/{accountId}/analytics | Get account analytics |
TalonOne::ManagementApi | get_account_collection | GET /v1/collections/{collectionId} | Get account-level collection |
TalonOne::ManagementApi | get_achievement | GET /v1/applications/{applicationId}/campaigns/{campaignId}/achievements/{achievementId} | Get achievement |
TalonOne::ManagementApi | get_additional_cost | GET /v1/additional_costs/{additionalCostId} | Get additional cost |
TalonOne::ManagementApi | get_additional_costs | GET /v1/additional_costs | List additional costs |
TalonOne::ManagementApi | get_application | GET /v1/applications/{applicationId} | Get Application |
TalonOne::ManagementApi | get_application_api_health | GET /v1/applications/{applicationId}/health_report | Get Application health |
TalonOne::ManagementApi | get_application_customer | GET /v1/applications/{applicationId}/customers/{customerId} | Get application's customer |
TalonOne::ManagementApi | get_application_customer_friends | GET /v1/applications/{applicationId}/profile/{integrationId}/friends | List friends referred by customer profile |
TalonOne::ManagementApi | get_application_customers | GET /v1/applications/{applicationId}/customers | List application's customers |
TalonOne::ManagementApi | get_application_customers_by_attributes | POST /v1/applications/{applicationId}/customer_search | List application customers matching the given attributes |
TalonOne::ManagementApi | get_application_event_types | GET /v1/applications/{applicationId}/event_types | List Applications event types |
TalonOne::ManagementApi | get_application_events_without_total_count | GET /v1/applications/{applicationId}/events/no_total | List Applications events |
TalonOne::ManagementApi | get_application_session | GET /v1/applications/{applicationId}/sessions/{sessionId} | Get Application session |
TalonOne::ManagementApi | get_application_sessions | GET /v1/applications/{applicationId}/sessions | List Application sessions |
TalonOne::ManagementApi | get_applications | GET /v1/applications | List Applications |
TalonOne::ManagementApi | get_attribute | GET /v1/attributes/{attributeId} | Get custom attribute |
TalonOne::ManagementApi | get_attributes | GET /v1/attributes | List custom attributes |
TalonOne::ManagementApi | get_audience_memberships | GET /v1/audiences/{audienceId}/memberships | List audience members |
TalonOne::ManagementApi | get_audiences | GET /v1/audiences | List audiences |
TalonOne::ManagementApi | get_audiences_analytics | GET /v1/audiences/analytics | List audience analytics |
TalonOne::ManagementApi | get_campaign | GET /v1/applications/{applicationId}/campaigns/{campaignId} | Get campaign |
TalonOne::ManagementApi | get_campaign_analytics | GET /v1/applications/{applicationId}/campaigns/{campaignId}/analytics | Get analytics of campaigns |
TalonOne::ManagementApi | get_campaign_by_attributes | POST /v1/applications/{applicationId}/campaigns_search | List campaigns that match the given attributes |
TalonOne::ManagementApi | get_campaign_group | GET /v1/campaign_groups/{campaignGroupId} | Get campaign access group |
TalonOne::ManagementApi | get_campaign_groups | GET /v1/campaign_groups | List campaign access groups |
TalonOne::ManagementApi | get_campaign_templates | GET /v1/campaign_templates | List campaign templates |
TalonOne::ManagementApi | get_campaigns | GET /v1/applications/{applicationId}/campaigns | List campaigns |
TalonOne::ManagementApi | get_changes | GET /v1/changes | Get audit logs for an account |
TalonOne::ManagementApi | get_collection | GET /v1/applications/{applicationId}/campaigns/{campaignId}/collections/{collectionId} | Get campaign-level collection |
TalonOne::ManagementApi | get_collection_items | GET /v1/collections/{collectionId}/items | Get collection items |
TalonOne::ManagementApi | get_coupons_without_total_count | GET /v1/applications/{applicationId}/campaigns/{campaignId}/coupons/no_total | List coupons |
TalonOne::ManagementApi | get_customer_activity_report | GET /v1/applications/{applicationId}/customer_activity_reports/{customerId} | Get customer's activity report |
TalonOne::ManagementApi | get_customer_activity_reports_without_total_count | GET /v1/applications/{applicationId}/customer_activity_reports/no_total | Get Activity Reports for Application Customers |
TalonOne::ManagementApi | get_customer_analytics | GET /v1/applications/{applicationId}/customers/{customerId}/analytics | Get customer's analytics report |
TalonOne::ManagementApi | get_customer_profile | GET /v1/customers/{customerId} | Get customer profile |
TalonOne::ManagementApi | get_customer_profile_achievement_progress | GET /v1/applications/{applicationId}/achievement_progress/{integrationId} | List customer achievements |
TalonOne::ManagementApi | get_customer_profiles | GET /v1/customers/no_total | List customer profiles |
TalonOne::ManagementApi | get_customers_by_attributes | POST /v1/customer_search/no_total | List customer profiles matching the given attributes |
TalonOne::ManagementApi | get_event_types | GET /v1/event_types | List event types |
TalonOne::ManagementApi | get_exports | GET /v1/exports | Get exports |
TalonOne::ManagementApi | get_loyalty_card | GET /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId} | Get loyalty card |
TalonOne::ManagementApi | get_loyalty_card_transaction_logs | GET /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/logs | List card's transactions |
TalonOne::ManagementApi | get_loyalty_cards | GET /v1/loyalty_programs/{loyaltyProgramId}/cards | List loyalty cards |
TalonOne::ManagementApi | get_loyalty_points | GET /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId} | Get customer's full loyalty ledger |
TalonOne::ManagementApi | get_loyalty_program | GET /v1/loyalty_programs/{loyaltyProgramId} | Get loyalty program |
TalonOne::ManagementApi | get_loyalty_program_transactions | GET /v1/loyalty_programs/{loyaltyProgramId}/transactions | List loyalty program transactions |
TalonOne::ManagementApi | get_loyalty_programs | GET /v1/loyalty_programs | List loyalty programs |
TalonOne::ManagementApi | get_loyalty_statistics | GET /v1/loyalty_programs/{loyaltyProgramId}/statistics | Get loyalty program statistics |
TalonOne::ManagementApi | get_referrals_without_total_count | GET /v1/applications/{applicationId}/campaigns/{campaignId}/referrals/no_total | List referrals |
TalonOne::ManagementApi | get_role_v2 | GET /v2/roles/{roleId} | Get role |
TalonOne::ManagementApi | get_ruleset | GET /v1/applications/{applicationId}/campaigns/{campaignId}/rulesets/{rulesetId} | Get ruleset |
TalonOne::ManagementApi | get_rulesets | GET /v1/applications/{applicationId}/campaigns/{campaignId}/rulesets | List campaign rulesets |
TalonOne::ManagementApi | get_store | GET /v1/applications/{applicationId}/stores/{storeId} | Get store |
TalonOne::ManagementApi | get_user | GET /v1/users/{userId} | Get user |
TalonOne::ManagementApi | get_users | GET /v1/users | List users in account |
TalonOne::ManagementApi | get_webhook | GET /v1/webhooks/{webhookId} | Get webhook |
TalonOne::ManagementApi | get_webhook_activation_logs | GET /v1/webhook_activation_logs | List webhook activation log entries |
TalonOne::ManagementApi | get_webhook_logs | GET /v1/webhook_logs | List webhook log entries |
TalonOne::ManagementApi | get_webhooks | GET /v1/webhooks | List webhooks |
TalonOne::ManagementApi | import_account_collection | POST /v1/collections/{collectionId}/import | Import data into existing account-level collection |
TalonOne::ManagementApi | import_allowed_list | POST /v1/attributes/{attributeId}/allowed_list/import | Import allowed values for attribute |
TalonOne::ManagementApi | import_audiences_memberships | POST /v1/audiences/{audienceId}/memberships/import | Import audience members |
TalonOne::ManagementApi | import_campaign_stores | POST /v1/applications/{applicationId}/campaigns/{campaignId}/stores/import | Import stores |
TalonOne::ManagementApi | import_collection | POST /v1/applications/{applicationId}/campaigns/{campaignId}/collections/{collectionId}/import | Import data into existing campaign-level collection |
TalonOne::ManagementApi | import_coupons | POST /v1/applications/{applicationId}/campaigns/{campaignId}/import_coupons | Import coupons |
TalonOne::ManagementApi | import_loyalty_cards | POST /v1/loyalty_programs/{loyaltyProgramId}/import_cards | Import loyalty cards |
TalonOne::ManagementApi | import_loyalty_customers_tiers | POST /v1/loyalty_programs/{loyaltyProgramId}/import_customers_tiers | Import customers into loyalty tiers |
TalonOne::ManagementApi | import_loyalty_points | POST /v1/loyalty_programs/{loyaltyProgramId}/import_points | Import loyalty points |
TalonOne::ManagementApi | import_pool_giveaways | POST /v1/giveaways/pools/{poolId}/import | Import giveaway codes into a giveaway pool |
TalonOne::ManagementApi | import_referrals | POST /v1/applications/{applicationId}/campaigns/{campaignId}/import_referrals | Import referrals |
TalonOne::ManagementApi | invite_user_external | POST /v1/users/invite | Invite user from identity provider |
TalonOne::ManagementApi | list_account_collections | GET /v1/collections | List collections in account |
TalonOne::ManagementApi | list_achievements | GET /v1/applications/{applicationId}/campaigns/{campaignId}/achievements | List achievements |
TalonOne::ManagementApi | list_all_roles_v2 | GET /v2/roles | List roles |
TalonOne::ManagementApi | list_catalog_items | GET /v1/catalogs/{catalogId}/items | List items in a catalog |
TalonOne::ManagementApi | list_collections | GET /v1/applications/{applicationId}/campaigns/{campaignId}/collections | List collections in campaign |
TalonOne::ManagementApi | list_collections_in_application | GET /v1/applications/{applicationId}/collections | List collections in Application |
TalonOne::ManagementApi | list_stores | GET /v1/applications/{applicationId}/stores | List stores |
TalonOne::ManagementApi | notification_activation | PUT /v1/notifications/{notificationId}/activation | Activate or deactivate notification |
TalonOne::ManagementApi | okta_event_handler_challenge | GET /v1/provisioning/okta | Validate Okta API ownership |
TalonOne::ManagementApi | post_added_deducted_points_notification | POST /v1/loyalty_programs/{loyaltyProgramId}/notifications/added_deducted_points | Create notification about added or deducted loyalty points |
TalonOne::ManagementApi | post_catalogs_strikethrough_notification | POST /v1/applications/{applicationId}/catalogs/notifications/strikethrough | Create strikethrough notification |
TalonOne::ManagementApi | post_pending_points_notification | POST /v1/loyalty_programs/{loyaltyProgramId}/notifications/pending_points | Create notification about pending loyalty points |
TalonOne::ManagementApi | remove_loyalty_points | PUT /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/deduct_points | Deduct points from customer profile |
TalonOne::ManagementApi | reset_password | POST /v1/reset_password | Reset password |
TalonOne::ManagementApi | scim_create_user | POST /v1/provisioning/scim/Users | Create SCIM user |
TalonOne::ManagementApi | scim_delete_user | DELETE /v1/provisioning/scim/Users/{userId} | Delete SCIM user |
TalonOne::ManagementApi | scim_get_resource_types | GET /v1/provisioning/scim/ResourceTypes | List supported SCIM resource types |
TalonOne::ManagementApi | scim_get_schemas | GET /v1/provisioning/scim/Schemas | List supported SCIM schemas |
TalonOne::ManagementApi | scim_get_service_provider_config | GET /v1/provisioning/scim/ServiceProviderConfig | Get SCIM service provider configuration |
TalonOne::ManagementApi | scim_get_user | GET /v1/provisioning/scim/Users/{userId} | Get SCIM user |
TalonOne::ManagementApi | scim_get_users | GET /v1/provisioning/scim/Users | List SCIM users |
TalonOne::ManagementApi | scim_patch_user | PATCH /v1/provisioning/scim/Users/{userId} | Update SCIM user attributes |
TalonOne::ManagementApi | scim_replace_user_attributes | PUT /v1/provisioning/scim/Users/{userId} | Update SCIM user |
TalonOne::ManagementApi | search_coupons_advanced_application_wide_without_total_count | POST /v1/applications/{applicationId}/coupons_search_advanced/no_total | List coupons that match the given attributes (without total count) |
TalonOne::ManagementApi | search_coupons_advanced_without_total_count | POST /v1/applications/{applicationId}/campaigns/{campaignId}/coupons_search_advanced/no_total | List coupons that match the given attributes in campaign (without total count) |
TalonOne::ManagementApi | transfer_loyalty_card | PUT /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/transfer | Transfer card data |
TalonOne::ManagementApi | update_account_collection | PUT /v1/collections/{collectionId} | Update account-level collection |
TalonOne::ManagementApi | update_achievement | PUT /v1/applications/{applicationId}/campaigns/{campaignId}/achievements/{achievementId} | Update achievement |
TalonOne::ManagementApi | update_additional_cost | PUT /v1/additional_costs/{additionalCostId} | Update additional cost |
TalonOne::ManagementApi | update_attribute | PUT /v1/attributes/{attributeId} | Update custom attribute |
TalonOne::ManagementApi | update_campaign | PUT /v1/applications/{applicationId}/campaigns/{campaignId} | Update campaign |
TalonOne::ManagementApi | update_collection | PUT /v1/applications/{applicationId}/campaigns/{campaignId}/collections/{collectionId} | Update campaign-level collection's description |
TalonOne::ManagementApi | update_coupon | PUT /v1/applications/{applicationId}/campaigns/{campaignId}/coupons/{couponId} | Update coupon |
TalonOne::ManagementApi | update_coupon_batch | PUT /v1/applications/{applicationId}/campaigns/{campaignId}/coupons | Update coupons |
TalonOne::ManagementApi | update_loyalty_card | PUT /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId} | Update loyalty card status |
TalonOne::ManagementApi | update_referral | PUT /v1/applications/{applicationId}/campaigns/{campaignId}/referrals/{referralId} | Update referral |
TalonOne::ManagementApi | update_role_v2 | PUT /v2/roles/{roleId} | Update role |
TalonOne::ManagementApi | update_store | PUT /v1/applications/{applicationId}/stores/{storeId} | Update store |
TalonOne::ManagementApi | update_user | PUT /v1/users/{userId} | Update user |
- TalonOne::APIError
- TalonOne::AcceptCouponEffectProps
- TalonOne::AcceptReferralEffectProps
- TalonOne::AccessLogEntry
- TalonOne::Account
- TalonOne::AccountAdditionalCost
- TalonOne::AccountAnalytics
- TalonOne::AccountDashboardStatistic
- TalonOne::AccountDashboardStatisticCampaigns
- TalonOne::AccountDashboardStatisticDiscount
- TalonOne::AccountDashboardStatisticLoyaltyPoints
- TalonOne::AccountDashboardStatisticReferrals
- TalonOne::AccountDashboardStatisticRevenue
- TalonOne::AccountEntity
- TalonOne::AccountLimits
- TalonOne::Achievement
- TalonOne::AchievementAdditionalProperties
- TalonOne::AchievementProgress
- TalonOne::AddFreeItemEffectProps
- TalonOne::AddItemCatalogAction
- TalonOne::AddLoyaltyPoints
- TalonOne::AddLoyaltyPointsEffectProps
- TalonOne::AddToAudienceEffectProps
- TalonOne::AddedDeductedPointsNotificationPolicy
- TalonOne::AdditionalCampaignProperties
- TalonOne::AdditionalCost
- TalonOne::AnalyticsDataPoint
- TalonOne::AnalyticsDataPointWithTrend
- TalonOne::AnalyticsDataPointWithTrendAndInfluencedRate
- TalonOne::AnalyticsDataPointWithTrendAndUplift
- TalonOne::AnalyticsProduct
- TalonOne::AnalyticsProductSKU
- TalonOne::Application
- TalonOne::ApplicationAPIKey
- TalonOne::ApplicationAnalyticsDataPoint
- TalonOne::ApplicationApiHealth
- TalonOne::ApplicationCIF
- TalonOne::ApplicationCIFExpression
- TalonOne::ApplicationCampaignAnalytics
- TalonOne::ApplicationCampaignStats
- TalonOne::ApplicationCustomer
- TalonOne::ApplicationCustomerEntity
- TalonOne::ApplicationEntity
- TalonOne::ApplicationEvent
- TalonOne::ApplicationNotification
- TalonOne::ApplicationReferee
- TalonOne::ApplicationSession
- TalonOne::ApplicationSessionEntity
- TalonOne::ApplicationStoreEntity
- TalonOne::AsyncCouponCreationResponse
- TalonOne::AsyncCouponDeletionJobResponse
- TalonOne::Attribute
- TalonOne::AttributesMandatory
- TalonOne::AttributesSettings
- TalonOne::Audience
- TalonOne::AudienceAnalytics
- TalonOne::AudienceCustomer
- TalonOne::AudienceIntegrationID
- TalonOne::AudienceMembership
- TalonOne::AwardGiveawayEffectProps
- TalonOne::BaseCampaign
- TalonOne::BaseLoyaltyProgram
- TalonOne::BaseNotification
- TalonOne::BaseNotificationEntity
- TalonOne::BaseNotificationWebhook
- TalonOne::BaseNotifications
- TalonOne::BaseSamlConnection
- TalonOne::Binding
- TalonOne::BulkApplicationNotification
- TalonOne::BulkCampaignNotification
- TalonOne::BulkOperationOnCampaigns
- TalonOne::Campaign
- TalonOne::CampaignActivationRequest
- TalonOne::CampaignAnalytics
- TalonOne::CampaignBudget
- TalonOne::CampaignCollection
- TalonOne::CampaignCollectionEditedNotification
- TalonOne::CampaignCollectionWithoutPayload
- TalonOne::CampaignCopy
- TalonOne::CampaignCreatedNotification
- TalonOne::CampaignDeletedNotification
- TalonOne::CampaignEditedNotification
- TalonOne::CampaignEntity
- TalonOne::CampaignEvaluationGroup
- TalonOne::CampaignEvaluationPosition
- TalonOne::CampaignEvaluationTreeChangedNotification
- TalonOne::CampaignGroup
- TalonOne::CampaignGroupEntity
- TalonOne::CampaignNotification
- TalonOne::CampaignNotificationPolicy
- TalonOne::CampaignRulesetChangedNotification
- TalonOne::CampaignSearch
- TalonOne::CampaignSet
- TalonOne::CampaignSetBranchNode
- TalonOne::CampaignSetLeafNode
- TalonOne::CampaignSetNode
- TalonOne::CampaignStateChangedNotification
- TalonOne::CampaignStoreBudget
- TalonOne::CampaignTemplate
- TalonOne::CampaignTemplateCollection
- TalonOne::CampaignTemplateCouponReservationSettings
- TalonOne::CampaignTemplateParams
- TalonOne::CampaignVersions
- TalonOne::CardAddedDeductedPointsNotificationPolicy
- TalonOne::CardExpiringPointsNotificationPolicy
- TalonOne::CardExpiringPointsNotificationTrigger
- TalonOne::CardLedgerPointsEntryIntegrationAPI
- TalonOne::CardLedgerTransactionLogEntry
- TalonOne::CardLedgerTransactionLogEntryIntegrationAPI
- TalonOne::CartItem
- TalonOne::Catalog
- TalonOne::CatalogAction
- TalonOne::CatalogActionFilter
- TalonOne::CatalogItem
- TalonOne::CatalogSyncRequest
- TalonOne::CatalogsStrikethroughNotificationPolicy
- TalonOne::Change
- TalonOne::ChangeLoyaltyTierLevelEffectProps
- TalonOne::ChangeProfilePassword
- TalonOne::CodeGeneratorSettings
- TalonOne::Collection
- TalonOne::CollectionItem
- TalonOne::CollectionWithoutPayload
- TalonOne::Coupon
- TalonOne::CouponConstraints
- TalonOne::CouponCreatedEffectProps
- TalonOne::CouponCreationJob
- TalonOne::CouponDeletionFilters
- TalonOne::CouponDeletionJob
- TalonOne::CouponLimitConfigs
- TalonOne::CouponRejectionReason
- TalonOne::CouponReservations
- TalonOne::CouponSearch
- TalonOne::CouponValue
- TalonOne::CouponsNotificationPolicy
- TalonOne::CreateAchievement
- TalonOne::CreateApplicationAPIKey
- TalonOne::CreateManagementKey
- TalonOne::CreateTemplateCampaign
- TalonOne::CreateTemplateCampaignResponse
- TalonOne::CustomEffect
- TalonOne::CustomEffectProps
- TalonOne::CustomerActivityReport
- TalonOne::CustomerAnalytics
- TalonOne::CustomerInventory
- TalonOne::CustomerProfile
- TalonOne::CustomerProfileAudienceRequest
- TalonOne::CustomerProfileAudienceRequestItem
- TalonOne::CustomerProfileIntegrationRequestV2
- TalonOne::CustomerProfileIntegrationResponseV2
- TalonOne::CustomerProfileSearchQuery
- TalonOne::CustomerProfileUpdateV2Response
- TalonOne::CustomerSession
- TalonOne::CustomerSessionV2
- TalonOne::DeactivateUserRequest
- TalonOne::DeductLoyaltyPoints
- TalonOne::DeductLoyaltyPointsEffectProps
- TalonOne::Effect
- TalonOne::EffectEntity
- TalonOne::EmailEntity
- TalonOne::Endpoint
- TalonOne::Entity
- TalonOne::EntityWithTalangVisibleID
- TalonOne::Environment
- TalonOne::ErrorEffectProps
- TalonOne::ErrorResponse
- TalonOne::ErrorResponseWithStatus
- TalonOne::ErrorSource
- TalonOne::EvaluableCampaignIds
- TalonOne::Event
- TalonOne::EventType
- TalonOne::EventV2
- TalonOne::ExpiringCouponsNotificationPolicy
- TalonOne::ExpiringCouponsNotificationTrigger
- TalonOne::ExpiringPointsNotificationPolicy
- TalonOne::ExpiringPointsNotificationTrigger
- TalonOne::Export
- TalonOne::FeatureFlag
- TalonOne::FeaturesFeed
- TalonOne::FuncArgDef
- TalonOne::FunctionDef
- TalonOne::GenerateCampaignDescription
- TalonOne::GenerateCampaignTags
- TalonOne::GenerateItemFilterDescription
- TalonOne::GenerateLoyaltyCard
- TalonOne::GenerateRuleTitle
- TalonOne::GenerateRuleTitleRule
- TalonOne::GetIntegrationCouponRequest
- TalonOne::Giveaway
- TalonOne::GiveawaysPool
- TalonOne::IdentifiableEntity
- TalonOne::Import
- TalonOne::ImportEntity
- TalonOne::IncreaseAchievementProgressEffectProps
- TalonOne::InlineResponse200
- TalonOne::InlineResponse2001
- TalonOne::InlineResponse20010
- TalonOne::InlineResponse20011
- TalonOne::InlineResponse20012
- TalonOne::InlineResponse20013
- TalonOne::InlineResponse20014
- TalonOne::InlineResponse20015
- TalonOne::InlineResponse20016
- TalonOne::InlineResponse20017
- TalonOne::InlineResponse20018
- TalonOne::InlineResponse20019
- TalonOne::InlineResponse2002
- TalonOne::InlineResponse20020
- TalonOne::InlineResponse20021
- TalonOne::InlineResponse20022
- TalonOne::InlineResponse20023
- TalonOne::InlineResponse20024
- TalonOne::InlineResponse20025
- TalonOne::InlineResponse20026
- TalonOne::InlineResponse20027
- TalonOne::InlineResponse20028
- TalonOne::InlineResponse20029
- TalonOne::InlineResponse2003
- TalonOne::InlineResponse20030
- TalonOne::InlineResponse20031
- TalonOne::InlineResponse20032
- TalonOne::InlineResponse20033
- TalonOne::InlineResponse20034
- TalonOne::InlineResponse20035
- TalonOne::InlineResponse20036
- TalonOne::InlineResponse20037
- TalonOne::InlineResponse20038
- TalonOne::InlineResponse20039
- TalonOne::InlineResponse2004
- TalonOne::InlineResponse20040
- TalonOne::InlineResponse20041
- TalonOne::InlineResponse20042
- TalonOne::InlineResponse20043
- TalonOne::InlineResponse20044
- TalonOne::InlineResponse20045
- TalonOne::InlineResponse20046
- TalonOne::InlineResponse2005
- TalonOne::InlineResponse2006
- TalonOne::InlineResponse2007
- TalonOne::InlineResponse2008
- TalonOne::InlineResponse2009
- TalonOne::InlineResponse201
- TalonOne::IntegrationCoupon
- TalonOne::IntegrationCustomerSessionResponse
- TalonOne::IntegrationEntity
- TalonOne::IntegrationEvent
- TalonOne::IntegrationEventV2Request
- TalonOne::IntegrationProfileEntity
- TalonOne::IntegrationRequest
- TalonOne::IntegrationState
- TalonOne::IntegrationStateV2
- TalonOne::IntegrationStoreEntity
- TalonOne::InventoryCoupon
- TalonOne::InventoryReferral
- TalonOne::ItemAttribute
- TalonOne::LedgerEntry
- TalonOne::LedgerInfo
- TalonOne::LedgerPointsEntryIntegrationAPI
- TalonOne::LedgerTransactionLogEntryIntegrationAPI
- TalonOne::LibraryAttribute
- TalonOne::LimitConfig
- TalonOne::LimitCounter
- TalonOne::ListCampaignStoreBudgets
- TalonOne::ListCampaignStoreBudgetsStore
- TalonOne::LoginParams
- TalonOne::Loyalty
- TalonOne::LoyaltyBalance
- TalonOne::LoyaltyBalanceWithTier
- TalonOne::LoyaltyBalances
- TalonOne::LoyaltyBalancesWithTiers
- TalonOne::LoyaltyCard
- TalonOne::LoyaltyCardBalances
- TalonOne::LoyaltyCardBatch
- TalonOne::LoyaltyCardBatchResponse
- TalonOne::LoyaltyCardProfileRegistration
- TalonOne::LoyaltyCardRegistration
- TalonOne::LoyaltyDashboardData
- TalonOne::LoyaltyDashboardPointsBreakdown
- TalonOne::LoyaltyLedger
- TalonOne::LoyaltyLedgerEntry
- TalonOne::LoyaltyLedgerTransactions
- TalonOne::LoyaltyMembership
- TalonOne::LoyaltyProgram
- TalonOne::LoyaltyProgramBalance
- TalonOne::LoyaltyProgramEntity
- TalonOne::LoyaltyProgramLedgers
- TalonOne::LoyaltyProgramTransaction
- TalonOne::LoyaltySubLedger
- TalonOne::LoyaltyTier
- TalonOne::ManagementKey
- TalonOne::ManagerConfig
- TalonOne::MessageLogEntries
- TalonOne::MessageLogEntry
- TalonOne::MessageLogRequest
- TalonOne::MessageLogResponse
- TalonOne::Meta
- TalonOne::ModelReturn
- TalonOne::MultiApplicationEntity
- TalonOne::MultipleAttribute
- TalonOne::MultipleAudiences
- TalonOne::MultipleAudiencesItem
- TalonOne::MultipleCustomerProfileIntegrationRequest
- TalonOne::MultipleCustomerProfileIntegrationRequestItem
- TalonOne::MultipleCustomerProfileIntegrationResponseV2
- TalonOne::MultipleNewAttribute
- TalonOne::MultipleNewAudiences
- TalonOne::MutableEntity
- TalonOne::NewAccount
- TalonOne::NewAccountSignUp
- TalonOne::NewAdditionalCost
- TalonOne::NewAppWideCouponDeletionJob
- TalonOne::NewApplication
- TalonOne::NewApplicationAPIKey
- TalonOne::NewApplicationCIF
- TalonOne::NewApplicationCIFExpression
- TalonOne::NewAttribute
- TalonOne::NewAudience
- TalonOne::NewBaseNotification
- TalonOne::NewCampaign
- TalonOne::NewCampaignCollection
- TalonOne::NewCampaignEvaluationGroup
- TalonOne::NewCampaignGroup
- TalonOne::NewCampaignSet
- TalonOne::NewCampaignStoreBudget
- TalonOne::NewCampaignStoreBudgetStoreLimit
- TalonOne::NewCampaignTemplate
- TalonOne::NewCatalog
- TalonOne::NewCollection
- TalonOne::NewCouponCreationJob
- TalonOne::NewCouponDeletionJob
- TalonOne::NewCoupons
- TalonOne::NewCouponsForMultipleRecipients
- TalonOne::NewCustomEffect
- TalonOne::NewCustomerProfile
- TalonOne::NewCustomerSession
- TalonOne::NewCustomerSessionV2
- TalonOne::NewEvent
- TalonOne::NewEventType
- TalonOne::NewExternalInvitation
- TalonOne::NewGiveawaysPool
- TalonOne::NewInternalAudience
- TalonOne::NewInvitation
- TalonOne::NewInviteEmail
- TalonOne::NewLoyaltyProgram
- TalonOne::NewLoyaltyTier
- TalonOne::NewManagementKey
- TalonOne::NewMultipleAudiencesItem
- TalonOne::NewNotificationTest
- TalonOne::NewNotificationWebhook
- TalonOne::NewOutgoingIntegrationWebhook
- TalonOne::NewPassword
- TalonOne::NewPasswordEmail
- TalonOne::NewPicklist
- TalonOne::NewReferral
- TalonOne::NewReferralsForMultipleAdvocates
- TalonOne::NewReturn
- TalonOne::NewRevisionVersion
- TalonOne::NewRole
- TalonOne::NewRoleV2
- TalonOne::NewRuleset
- TalonOne::NewSamlConnection
- TalonOne::NewStore
- TalonOne::NewTemplateDef
- TalonOne::NewUser
- TalonOne::NewWebhook
- TalonOne::Notification
- TalonOne::NotificationActivation
- TalonOne::NotificationListItem
- TalonOne::NotificationTest
- TalonOne::OktaEvent
- TalonOne::OktaEventPayload
- TalonOne::OktaEventPayloadData
- TalonOne::OktaEventTarget
- TalonOne::OneTimeCode
- TalonOne::OutgoingIntegrationBrazePolicy
- TalonOne::OutgoingIntegrationCleverTapPolicy
- TalonOne::OutgoingIntegrationConfiguration
- TalonOne::OutgoingIntegrationIterablePolicy
- TalonOne::OutgoingIntegrationMoEngagePolicy
- TalonOne::OutgoingIntegrationTemplate
- TalonOne::OutgoingIntegrationTemplateWithConfigurationDetails
- TalonOne::OutgoingIntegrationTemplates
- TalonOne::OutgoingIntegrationType
- TalonOne::OutgoingIntegrationTypes
- TalonOne::PatchItemCatalogAction
- TalonOne::PatchManyItemsCatalogAction
- TalonOne::PendingPointsNotificationPolicy
- TalonOne::Picklist
- TalonOne::Product
- TalonOne::ProductSearchMatch
- TalonOne::ProductSkuUnitAnalytics
- TalonOne::ProductUnitAnalytics
- TalonOne::ProfileAudiencesChanges
- TalonOne::ProjectedTier
- TalonOne::RedeemReferralEffectProps
- TalonOne::Referral
- TalonOne::ReferralConstraints
- TalonOne::ReferralCreatedEffectProps
- TalonOne::ReferralRejectionReason
- TalonOne::RejectCouponEffectProps
- TalonOne::RejectReferralEffectProps
- TalonOne::RemoveFromAudienceEffectProps
- TalonOne::RemoveItemCatalogAction
- TalonOne::RemoveManyItemsCatalogAction
- TalonOne::ReopenSessionResponse
- TalonOne::ReserveCouponEffectProps
- TalonOne::ReturnIntegrationRequest
- TalonOne::ReturnedCartItem
- TalonOne::Revision
- TalonOne::RevisionActivation
- TalonOne::RevisionVersion
- TalonOne::Role
- TalonOne::RoleAssign
- TalonOne::RoleMembership
- TalonOne::RoleV2
- TalonOne::RoleV2ApplicationDetails
- TalonOne::RoleV2Base
- TalonOne::RoleV2PermissionSet
- TalonOne::RoleV2Permissions
- TalonOne::RoleV2RolesGroup
- TalonOne::RollbackAddedLoyaltyPointsEffectProps
- TalonOne::RollbackCouponEffectProps
- TalonOne::RollbackDeductedLoyaltyPointsEffectProps
- TalonOne::RollbackDiscountEffectProps
- TalonOne::RollbackIncreasedAchievementProgressEffectProps
- TalonOne::RollbackReferralEffectProps
- TalonOne::Rule
- TalonOne::RuleFailureReason
- TalonOne::Ruleset
- TalonOne::SSOConfig
- TalonOne::SamlConnection
- TalonOne::SamlConnectionInternal
- TalonOne::SamlConnectionMetadata
- TalonOne::SamlLoginEndpoint
- TalonOne::ScimBaseUser
- TalonOne::ScimBaseUserName
- TalonOne::ScimNewUser
- TalonOne::ScimPatchOperation
- TalonOne::ScimPatchRequest
- TalonOne::ScimResource
- TalonOne::ScimResourceTypesListResponse
- TalonOne::ScimSchemaResource
- TalonOne::ScimSchemasListResponse
- TalonOne::ScimServiceProviderConfigResponse
- TalonOne::ScimServiceProviderConfigResponseBulk
- TalonOne::ScimServiceProviderConfigResponseChangePassword
- TalonOne::ScimServiceProviderConfigResponseFilter
- TalonOne::ScimServiceProviderConfigResponsePatch
- TalonOne::ScimServiceProviderConfigResponseSort
- TalonOne::ScimUser
- TalonOne::ScimUsersListResponse
- TalonOne::Session
- TalonOne::SetDiscountEffectProps
- TalonOne::SetDiscountPerAdditionalCostEffectProps
- TalonOne::SetDiscountPerAdditionalCostPerItemEffectProps
- TalonOne::SetDiscountPerItemEffectProps
- TalonOne::ShowBundleMetadataEffectProps
- TalonOne::ShowNotificationEffectProps
- TalonOne::SlotDef
- TalonOne::Store
- TalonOne::StrikethroughChangedItem
- TalonOne::StrikethroughCustomEffectPerItemProps
- TalonOne::StrikethroughDebugResponse
- TalonOne::StrikethroughEffect
- TalonOne::StrikethroughLabelingNotification
- TalonOne::StrikethroughSetDiscountPerItemEffectProps
- TalonOne::StrikethroughTrigger
- TalonOne::SummaryCampaignStoreBudget
- TalonOne::TalangAttribute
- TalonOne::TalangAttributeVisibility
- TalonOne::TemplateArgDef
- TalonOne::TemplateDef
- TalonOne::TemplateLimitConfig
- TalonOne::Tier
- TalonOne::TierDowngradeNotificationPolicy
- TalonOne::TierUpgradeNotificationPolicy
- TalonOne::TierWillDowngradeNotificationPolicy
- TalonOne::TierWillDowngradeNotificationTrigger
- TalonOne::TimePoint
- TalonOne::TrackEventV2Response
- TalonOne::TransferLoyaltyCard
- TalonOne::TriggerWebhookEffectProps
- TalonOne::TwoFAConfig
- TalonOne::UpdateAccount
- TalonOne::UpdateAchievement
- TalonOne::UpdateApplication
- TalonOne::UpdateApplicationAPIKey
- TalonOne::UpdateApplicationCIF
- TalonOne::UpdateAttributeEffectProps
- TalonOne::UpdateAudience
- TalonOne::UpdateCampaign
- TalonOne::UpdateCampaignCollection
- TalonOne::UpdateCampaignEvaluationGroup
- TalonOne::UpdateCampaignGroup
- TalonOne::UpdateCampaignTemplate
- TalonOne::UpdateCatalog
- TalonOne::UpdateCollection
- TalonOne::UpdateCoupon
- TalonOne::UpdateCouponBatch
- TalonOne::UpdateLoyaltyCard
- TalonOne::UpdateLoyaltyProgram
- TalonOne::UpdateLoyaltyProgramTier
- TalonOne::UpdatePicklist
- TalonOne::UpdateReferral
- TalonOne::UpdateReferralBatch
- TalonOne::UpdateRole
- TalonOne::UpdateStore
- TalonOne::UpdateUser
- TalonOne::User
- TalonOne::UserEntity
- TalonOne::ValueMap
- TalonOne::Webhook
- TalonOne::WebhookActivationLogEntry
- TalonOne::WebhookLogEntry
- TalonOne::WebhookWithOutgoingIntegrationDetails
- TalonOne::WillAwardGiveawayEffectProps
Authentication schemes defined for the API:
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header