TalonOne 5.0.0
See the version list below for details.
dotnet add package TalonOne --version 5.0.0
NuGet\Install-Package TalonOne -Version 5.0.0
<PackageReference Include="TalonOne" Version="5.0.0" />
paket add TalonOne --version 5.0.0
#r "nuget: TalonOne, 5.0.0"
// Install TalonOne as a Cake Addin #addin nuget:?package=TalonOne&version=5.0.0 // Install TalonOne as a Cake Tool #tool nuget:?package=TalonOne&version=5.0.0
TalonOne - the C# library for the Talon.One API
Use the Talon.One API to integrate with your application and to manage applications and campaigns:
- Use the operations in the Integration API section are used to integrate with our platform
- Use the operation in the Management API section to manage applications and campaigns.
Determining the base URL of the endpoints
The API is available at the same hostname as your Campaign Manager deployment.
For example, if you access the Campaign Manager at https://yourbaseurl.talon.one/
,
the URL for the updateCustomerSessionV2 endpoint
is https://yourbaseurl.talon.one/v2/customer_sessions/{Id}
This C# SDK is automatically generated by the OpenAPI Generator project:
- SDK version: 5.0.0
- Build package: org.openapitools.codegen.languages.CSharpNetCoreClientCodegen
<a name="frameworks-supported"></a>
Frameworks supported
- .NET Core >=1.0
- .NET Framework >=4.6
- Mono/Xamarin >=vNext
<a name="dependencies"></a>
Dependencies
- RestSharp - 106.15.0 or later
- Json.NET - 13.0.2 or later
- JsonSubTypes - 1.5.2 or later
- System.ComponentModel.Annotations - 4.5.0 or later
The DLLs included in the package may not be the latest version. We recommend using NuGet to obtain the latest version of the packages:
Install-Package RestSharp
Install-Package Newtonsoft.Json
Install-Package JsonSubTypes
Install-Package System.ComponentModel.Annotations
<a name="installation"></a>
Installation
Generate the DLL using your preferred tool (e.g. dotnet build
)
Then include the DLL (under the bin
folder) in the C# project, and use the namespaces:
using TalonOne.Api;
using TalonOne.Client;
using TalonOne.Model;
<a name="getting-started"></a>
Getting Started
Integration API
Note: The Integration API's V1 Update customer session
and Update customer profile
endpoints are now deprecated. Use their V2 instead. See Migrating to V2 for more information.
using System.Collections.Generic;
using System.Diagnostics;
using TalonOne.Api;
using TalonOne.Client;
using TalonOne.Model;
namespace Example
{
public class Example
{
public static void main()
{
// Configure BasePath & API key authorization: api_key_v1
var integrationConfig = new Configuration {
BasePath = "https://yourbaseurl.talon.one.talon.one",
ApiKey = new Dictionary<string, string> {
{ "Authorization", "e18149e88f42205432281c9d3d0e711111302722577ad60dcebc86c43aabfe70" }
},
ApiKeyPrefix = new Dictionary<string, string> {
{ "Authorization", "ApiKey-v1" }
}
};
// ************************************************
// Integration API example to send a session update
// ************************************************
// When using the default approach, the next initiation of `IntegrationApi`
// could be using the empty constructor
var integrationApi = new IntegrationApi(integrationConfig);
var customerSessionId = "my_unique_session_integration_id_2"; // string | The custom identifier for this session, must be unique within the account.
// Preparing a NewCustomerSessionV2 object
NewCustomerSessionV2 customerSession = new NewCustomerSessionV2 {
ProfileId = "PROFILE_ID",
CouponCodes = new List<string> {
"Cool-Stuff-2020"
},
CartItems = new List<CartItem> {
new CartItem(
name: "Hummus Tahini",
sku: "hum-t",
quantity: 1,
price: (decimal)5.5,
category: "Food"
),
new CartItem(
name: "Iced Mint Lemonade",
sku: "ice-mn-lemon",
quantity: 1,
price: (decimal)3.5,
category: "Beverages"
)
}
};
// Instantiating an IntegrationRequest object
IntegrationRequest body = new IntegrationRequest(
customerSession
// Optional list of requested information to be present on the response.
// See src/TalonOne/Model/IntegrationRequest#ResponseContentEnum for full list of supported values
// new List<IntegrationRequest.ResponseContentEnum> {
// IntegrationRequest.ResponseContentEnum.CustomerSession,
// IntegrationRequest.ResponseContentEnum.CustomerProfile
// }
);
try
{
// Create/update a customer session using `UpdateCustomerSessionV2` function
IntegrationStateV2 response = integrationApi.UpdateCustomerSessionV2(customerSessionId, body);
Debug.WriteLine(response);
// 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
foreach (Effect effect in response.Effects) {
switch(effect.EffectType) {
case "setDiscount":
// Initiating right props instance according to the effect type
SetDiscountEffectProps setDiscountEffectProps = (SetDiscountEffectProps) Newtonsoft.Json.JsonConvert.DeserializeObject(effect.Props.ToString(), typeof(SetDiscountEffectProps));
// Access the specific effect's properties
Debug.WriteLine("Set a discount '{0}' of {1:00.000}", setDiscountEffectProps.Name, setDiscountEffectProps.Value);
break;
// case "acceptCoupon":
// AcceptCouponEffectProps acceptCouponEffectProps = (AcceptCouponEffectProps) Newtonsoft.Json.JsonConvert.DeserializeObject(effect.Props.ToString(), typeof(AcceptCouponEffectProps));
// Work with AcceptCouponEffectProps' properties
// ...
// break;
default:
Debug.WriteLine("Encounter unknown effect type: {0}", effect.EffectType);
break;
}
}
}
catch (ApiException e)
{
Debug.Print("Exception when calling IntegrationApi.UpdateCustomerSessionV2: " + e.Message );
}
}
}
}
Management API
using System.Collections.Generic;
using System.Diagnostics;
using TalonOne.Api;
using TalonOne.Client;
using TalonOne.Model;
namespace Example
{
public class Example
{
public static void Main()
{
// Configure BasePath & API key authorization: management_key
var managementConfig = new Configuration {
BasePath = "https://yourbaseurl.talon.one.talon.one",
ApiKey = new Dictionary<string, string> {
{ "Authorization", "2f0dce055da01ae595005d7d79154bae7448d319d5fc7c5b2951fadd6ba1ea07" }
},
ApiKeyPrefix = new Dictionary<string, string> {
{ "Authorization", "ManagementKey-v1" }
}
};
// ****************************************************
// Management API example to load application with id 7
// ****************************************************
// When using the default approach, the next initiation of `ManagementApi`
// could be using the empty constructor
var managementApi = new ManagementApi(managementConfig);
try
{
// Calling `GetApplication` function with the desired id (7)
Application app = managementApi.GetApplication(7);
Debug.WriteLine(app);
}
catch (Exception e)
{
Debug.Print("Exception when calling ManagementApi.GetApplication: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}
<a name="documentation-for-api-endpoints"></a>
Documentation for API Endpoints
All URIs are relative to https://yourbaseurl.talon.one
Class | Method | HTTP request | Description |
---|---|---|---|
IntegrationApi | CreateAudienceV2 | POST /v2/audiences | Create audience |
IntegrationApi | CreateCouponReservation | POST /v1/coupon_reservations/{couponValue} | Create coupon reservation |
IntegrationApi | CreateReferral | POST /v1/referrals | Create referral code for an advocate |
IntegrationApi | CreateReferralsForMultipleAdvocates | POST /v1/referrals_for_multiple_advocates | Create referral codes for multiple advocates |
IntegrationApi | DeleteAudienceMembershipsV2 | DELETE /v2/audiences/{audienceId}/memberships | Delete audience memberships |
IntegrationApi | DeleteAudienceV2 | DELETE /v2/audiences/{audienceId} | Delete audience |
IntegrationApi | DeleteCouponReservation | DELETE /v1/coupon_reservations/{couponValue} | Delete coupon reservations |
IntegrationApi | DeleteCustomerData | DELETE /v1/customer_data/{integrationId} | Delete customer's personal data |
IntegrationApi | GetCustomerInventory | GET /v1/customer_profiles/{integrationId}/inventory | List customer data |
IntegrationApi | GetCustomerSession | GET /v2/customer_sessions/{customerSessionId} | Get customer session |
IntegrationApi | GetLoyaltyBalances | GET /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/balances | Get customer's loyalty points |
IntegrationApi | GetLoyaltyCardBalances | GET /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/balances | Get card's point balances |
IntegrationApi | GetLoyaltyCardTransactions | GET /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/transactions | List card's transactions |
IntegrationApi | GetLoyaltyProgramProfileTransactions | GET /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/transactions | List customer's loyalty transactions |
IntegrationApi | GetReservedCustomers | GET /v1/coupon_reservations/customerprofiles/{couponValue} | List customers that have this coupon reserved |
IntegrationApi | LinkLoyaltyCardToProfile | POST /v2/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/link_profile | Link customer profile to card |
IntegrationApi | ReopenCustomerSession | PUT /v2/customer_sessions/{customerSessionId}/reopen | Reopen customer session |
IntegrationApi | ReturnCartItems | POST /v2/customer_sessions/{customerSessionId}/returns | Return cart items |
IntegrationApi | SyncCatalog | PUT /v1/catalogs/{catalogId}/sync | Sync cart item catalog |
IntegrationApi | TrackEvent | POST /v1/events | Track event |
IntegrationApi | TrackEventV2 | POST /v2/events | Track event V2 |
IntegrationApi | UpdateAudienceCustomersAttributes | PUT /v2/audience_customers/{audienceId}/attributes | Update profile attributes for all customers in audience |
IntegrationApi | UpdateAudienceV2 | PUT /v2/audiences/{audienceId} | Update audience name |
IntegrationApi | UpdateCustomerProfileAudiences | POST /v2/customer_audiences | Update multiple customer profiles' audiences |
IntegrationApi | UpdateCustomerProfileV2 | PUT /v2/customer_profiles/{integrationId} | Update customer profile |
IntegrationApi | UpdateCustomerProfilesV2 | PUT /v2/customer_profiles | Update multiple customer profiles |
IntegrationApi | UpdateCustomerSessionV2 | PUT /v2/customer_sessions/{customerSessionId} | Update customer session |
ManagementApi | AddLoyaltyCardPoints | PUT /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/add_points | Add points to card |
ManagementApi | AddLoyaltyPoints | PUT /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/add_points | Add points to customer profile |
ManagementApi | CopyCampaignToApplications | POST /v1/applications/{applicationId}/campaigns/{campaignId}/copy | Copy the campaign into the specified Application |
ManagementApi | CreateAccountCollection | POST /v1/collections | Create account-level collection |
ManagementApi | CreateAdditionalCost | POST /v1/additional_costs | Create additional cost |
ManagementApi | CreateAttribute | POST /v1/attributes | Create custom attribute |
ManagementApi | CreateCampaignFromTemplate | POST /v1/applications/{applicationId}/create_campaign_from_template | Create campaign from campaign template |
ManagementApi | CreateCollection | POST /v1/applications/{applicationId}/campaigns/{campaignId}/collections | Create collection |
ManagementApi | CreateCoupons | POST /v1/applications/{applicationId}/campaigns/{campaignId}/coupons | Create coupons |
ManagementApi | CreateCouponsAsync | POST /v1/applications/{applicationId}/campaigns/{campaignId}/coupons_async | Create coupons asynchronously |
ManagementApi | CreateCouponsForMultipleRecipients | POST /v1/applications/{applicationId}/campaigns/{campaignId}/coupons_with_recipients | Create coupons for multiple recipients |
ManagementApi | CreateNotificationWebhook | POST /v1/applications/{applicationId}/notification_webhooks | Create notification about campaign-related changes |
ManagementApi | CreatePasswordRecoveryEmail | POST /v1/password_recovery_emails | Request a password reset |
ManagementApi | CreateSession | POST /v1/sessions | Create session |
ManagementApi | DeductLoyaltyCardPoints | PUT /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/deduct_points | Deduct points from card |
ManagementApi | DeleteAccountCollection | DELETE /v1/collections/{collectionId} | Delete account-level collection |
ManagementApi | DeleteCampaign | DELETE /v1/applications/{applicationId}/campaigns/{campaignId} | Delete campaign |
ManagementApi | DeleteCollection | DELETE /v1/applications/{applicationId}/campaigns/{campaignId}/collections/{collectionId} | Delete collection |
ManagementApi | DeleteCoupon | DELETE /v1/applications/{applicationId}/campaigns/{campaignId}/coupons/{couponId} | Delete coupon |
ManagementApi | DeleteCoupons | DELETE /v1/applications/{applicationId}/campaigns/{campaignId}/coupons | Delete coupons |
ManagementApi | DeleteLoyaltyCard | DELETE /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId} | Delete loyalty card |
ManagementApi | DeleteNotificationWebhook | DELETE /v1/applications/{applicationId}/notification_webhooks/{notificationWebhookId} | Delete notification about campaign-related changes |
ManagementApi | DeleteReferral | DELETE /v1/applications/{applicationId}/campaigns/{campaignId}/referrals/{referralId} | Delete referral |
ManagementApi | DestroySession | DELETE /v1/sessions | Destroy session |
ManagementApi | ExportAccountCollectionItems | GET /v1/collections/{collectionId}/export | Export account-level collection's items |
ManagementApi | ExportCollectionItems | GET /v1/applications/{applicationId}/campaigns/{campaignId}/collections/{collectionId}/export | Export a collection's items |
ManagementApi | ExportCoupons | GET /v1/applications/{applicationId}/export_coupons | Export coupons |
ManagementApi | ExportCustomerSessions | GET /v1/applications/{applicationId}/export_customer_sessions | Export customer sessions |
ManagementApi | ExportEffects | GET /v1/applications/{applicationId}/export_effects | Export triggered effects |
ManagementApi | ExportLoyaltyBalance | GET /v1/loyalty_programs/{loyaltyProgramId}/export_customer_balance | Export customer loyalty balance to CSV |
ManagementApi | ExportLoyaltyBalances | GET /v1/loyalty_programs/{loyaltyProgramId}/export_customer_balances | Export customer loyalty balances |
ManagementApi | ExportLoyaltyCardBalances | GET /v1/loyalty_programs/{loyaltyProgramId}/export_card_balances | Export all card transaction logs |
ManagementApi | ExportLoyaltyCardLedger | GET /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/export_log | Export card's ledger log |
ManagementApi | ExportLoyaltyLedger | GET /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/export_log | Export customer's transaction logs |
ManagementApi | ExportReferrals | GET /v1/applications/{applicationId}/export_referrals | Export referrals |
ManagementApi | GetAccessLogsWithoutTotalCount | GET /v1/applications/{applicationId}/access_logs/no_total | Get access logs for Application |
ManagementApi | GetAccount | GET /v1/accounts/{accountId} | Get account details |
ManagementApi | GetAccountAnalytics | GET /v1/accounts/{accountId}/analytics | Get account analytics |
ManagementApi | GetAccountCollection | GET /v1/collections/{collectionId} | Get account-level collection |
ManagementApi | GetAdditionalCost | GET /v1/additional_costs/{additionalCostId} | Get additional cost |
ManagementApi | GetAdditionalCosts | GET /v1/additional_costs | List additional costs |
ManagementApi | GetAllAccessLogs | GET /v1/access_logs | List access logs |
ManagementApi | GetAllRoles | GET /v1/roles | List roles |
ManagementApi | GetApplication | GET /v1/applications/{applicationId} | Get Application |
ManagementApi | GetApplicationApiHealth | GET /v1/applications/{applicationId}/health_report | Get Application health |
ManagementApi | GetApplicationCustomer | GET /v1/applications/{applicationId}/customers/{customerId} | Get application's customer |
ManagementApi | GetApplicationCustomerFriends | GET /v1/applications/{applicationId}/profile/{integrationId}/friends | List friends referred by customer profile |
ManagementApi | GetApplicationCustomers | GET /v1/applications/{applicationId}/customers | List application's customers |
ManagementApi | GetApplicationCustomersByAttributes | POST /v1/applications/{applicationId}/customer_search | List application customers matching the given attributes |
ManagementApi | GetApplicationEventTypes | GET /v1/applications/{applicationId}/event_types | List Applications event types |
ManagementApi | GetApplicationEventsWithoutTotalCount | GET /v1/applications/{applicationId}/events/no_total | List Applications events |
ManagementApi | GetApplicationSession | GET /v1/applications/{applicationId}/sessions/{sessionId} | Get Application session |
ManagementApi | GetApplicationSessions | GET /v1/applications/{applicationId}/sessions | List Application sessions |
ManagementApi | GetApplications | GET /v1/applications | List Applications |
ManagementApi | GetAttribute | GET /v1/attributes/{attributeId} | Get custom attribute |
ManagementApi | GetAttributes | GET /v1/attributes | List custom attributes |
ManagementApi | GetAudiences | GET /v1/audiences | List audiences |
ManagementApi | GetCampaign | GET /v1/applications/{applicationId}/campaigns/{campaignId} | Get campaign |
ManagementApi | GetCampaignAnalytics | GET /v1/applications/{applicationId}/campaigns/{campaignId}/analytics | Get analytics of campaigns |
ManagementApi | GetCampaignByAttributes | POST /v1/applications/{applicationId}/campaigns_search | List campaigns that match the given attributes |
ManagementApi | GetCampaignTemplates | GET /v1/campaign_templates | List campaign templates |
ManagementApi | GetCampaigns | GET /v1/applications/{applicationId}/campaigns | List campaigns |
ManagementApi | GetChanges | GET /v1/changes | Get audit logs for an account |
ManagementApi | GetCollection | GET /v1/applications/{applicationId}/campaigns/{campaignId}/collections/{collectionId} | Get collection |
ManagementApi | GetCollectionItems | GET /v1/collections/{collectionId}/items | Get collection items |
ManagementApi | GetCouponsWithoutTotalCount | GET /v1/applications/{applicationId}/campaigns/{campaignId}/coupons/no_total | List coupons |
ManagementApi | GetCustomerActivityReport | GET /v1/applications/{applicationId}/customer_activity_reports/{customerId} | Get customer's activity report |
ManagementApi | GetCustomerActivityReportsWithoutTotalCount | GET /v1/applications/{applicationId}/customer_activity_reports/no_total | Get Activity Reports for Application Customers |
ManagementApi | GetCustomerAnalytics | GET /v1/applications/{applicationId}/customers/{customerId}/analytics | Get customer's analytics report |
ManagementApi | GetCustomerProfile | GET /v1/customers/{customerId} | Get customer profile |
ManagementApi | GetCustomerProfiles | GET /v1/customers/no_total | List customer profiles |
ManagementApi | GetCustomersByAttributes | POST /v1/customer_search/no_total | List customer profiles matching the given attributes |
ManagementApi | GetEventTypes | GET /v1/event_types | List event types |
ManagementApi | GetExports | GET /v1/exports | Get exports |
ManagementApi | GetLoyaltyCard | GET /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId} | Get loyalty card |
ManagementApi | GetLoyaltyCardTransactionLogs | GET /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/logs | List card's transactions |
ManagementApi | GetLoyaltyCards | GET /v1/loyalty_programs/{loyaltyProgramId}/cards | List loyalty cards |
ManagementApi | GetLoyaltyPoints | GET /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId} | Get customer's full loyalty ledger |
ManagementApi | GetLoyaltyProgram | GET /v1/loyalty_programs/{loyaltyProgramId} | Get loyalty program |
ManagementApi | GetLoyaltyProgramTransactions | GET /v1/loyalty_programs/{loyaltyProgramId}/transactions | List loyalty program transactions |
ManagementApi | GetLoyaltyPrograms | GET /v1/loyalty_programs | List loyalty programs |
ManagementApi | GetLoyaltyStatistics | GET /v1/loyalty_programs/{loyaltyProgramId}/statistics | Get loyalty program statistics |
ManagementApi | GetNotificationWebhook | GET /v1/applications/{applicationId}/notification_webhooks/{notificationWebhookId} | Get notification about campaign-related changes |
ManagementApi | GetNotificationWebhooks | GET /v1/applications/{applicationId}/notification_webhooks | List notifications about campaign-related changes |
ManagementApi | GetReferralsWithoutTotalCount | GET /v1/applications/{applicationId}/campaigns/{campaignId}/referrals/no_total | List referrals |
ManagementApi | GetRole | GET /v1/roles/{roleId} | Get role |
ManagementApi | GetRuleset | GET /v1/applications/{applicationId}/campaigns/{campaignId}/rulesets/{rulesetId} | Get ruleset |
ManagementApi | GetRulesets | GET /v1/applications/{applicationId}/campaigns/{campaignId}/rulesets | List campaign rulesets |
ManagementApi | GetUser | GET /v1/users/{userId} | Get user |
ManagementApi | GetUsers | GET /v1/users | List users in account |
ManagementApi | GetWebhook | GET /v1/webhooks/{webhookId} | Get webhook |
ManagementApi | GetWebhookActivationLogs | GET /v1/webhook_activation_logs | List webhook activation log entries |
ManagementApi | GetWebhookLogs | GET /v1/webhook_logs | List webhook log entries |
ManagementApi | GetWebhooks | GET /v1/webhooks | List webhooks |
ManagementApi | ImportAccountCollection | POST /v1/collections/{collectionId}/import | Import data in existing account-level collection |
ManagementApi | ImportAllowedList | POST /v1/attributes/{attributeId}/allowed_list/import | Import allowed values for attribute |
ManagementApi | ImportCollection | POST /v1/applications/{applicationId}/campaigns/{campaignId}/collections/{collectionId}/import | Import data in existing collection |
ManagementApi | ImportCoupons | POST /v1/applications/{applicationId}/campaigns/{campaignId}/import_coupons | Import coupons |
ManagementApi | ImportLoyaltyCards | POST /v1/loyalty_programs/{loyaltyProgramId}/import_cards | Import loyalty cards |
ManagementApi | ImportLoyaltyPoints | POST /v1/loyalty_programs/{loyaltyProgramId}/import_points | Import loyalty points |
ManagementApi | ImportPoolGiveaways | POST /v1/giveaways/pools/{poolId}/import | Import giveaway codes into a giveaway pool |
ManagementApi | ImportReferrals | POST /v1/applications/{applicationId}/campaigns/{campaignId}/import_referrals | Import referrals |
ManagementApi | ListAccountCollections | GET /v1/collections | List collections in account |
ManagementApi | ListCollections | GET /v1/applications/{applicationId}/campaigns/{campaignId}/collections | List collections |
ManagementApi | ListCollectionsInApplication | GET /v1/applications/{applicationId}/collections | List collections in application |
ManagementApi | PostAddedDeductedPointsNotification | POST /v1/loyalty_programs/{loyaltyProgramId}/notifications/added_deducted_points | Create notification about added or deducted loyalty points |
ManagementApi | PostCatalogsStrikethroughNotification | POST /v1/catalogs/{applicationId}/notifications/strikethrough | Create strikethrough notification |
ManagementApi | RemoveLoyaltyPoints | PUT /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/deduct_points | Deduct points from customer profile |
ManagementApi | ResetPassword | POST /v1/reset_password | Reset password |
ManagementApi | SearchCouponsAdvancedApplicationWideWithoutTotalCount | POST /v1/applications/{applicationId}/coupons_search_advanced/no_total | List coupons that match the given attributes (without total count) |
ManagementApi | SearchCouponsAdvancedWithoutTotalCount | POST /v1/applications/{applicationId}/campaigns/{campaignId}/coupons_search_advanced/no_total | List coupons that match the given attributes in campaign (without total count) |
ManagementApi | TransferLoyaltyCard | PUT /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/transfer | Transfer card data |
ManagementApi | UpdateAccountCollection | PUT /v1/collections/{collectionId} | Update account-level collection |
ManagementApi | UpdateAdditionalCost | PUT /v1/additional_costs/{additionalCostId} | Update additional cost |
ManagementApi | UpdateAttribute | PUT /v1/attributes/{attributeId} | Update custom attribute |
ManagementApi | UpdateCampaign | PUT /v1/applications/{applicationId}/campaigns/{campaignId} | Update campaign |
ManagementApi | UpdateCollection | PUT /v1/applications/{applicationId}/campaigns/{campaignId}/collections/{collectionId} | Update collection description |
ManagementApi | UpdateCoupon | PUT /v1/applications/{applicationId}/campaigns/{campaignId}/coupons/{couponId} | Update coupon |
ManagementApi | UpdateCouponBatch | PUT /v1/applications/{applicationId}/campaigns/{campaignId}/coupons | Update coupons |
ManagementApi | UpdateLoyaltyCard | PUT /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId} | Update loyalty card status |
ManagementApi | UpdateNotificationWebhook | PUT /v1/applications/{applicationId}/notification_webhooks/{notificationWebhookId} | Update notification about campaign-related changes |
ManagementApi | UpdateReferral | PUT /v1/applications/{applicationId}/campaigns/{campaignId}/referrals/{referralId} | Update referral |
<a name="documentation-for-models"></a>
Documentation for Models
- Model.APIError
- Model.AcceptCouponEffectProps
- Model.AcceptReferralEffectProps
- Model.AccessLogEntry
- Model.Account
- Model.AccountAdditionalCost
- Model.AccountAnalytics
- Model.AccountDashboardStatistic
- Model.AccountDashboardStatisticApiCalls
- Model.AccountDashboardStatisticCampaigns
- Model.AccountDashboardStatisticDiscount
- Model.AccountDashboardStatisticLoyaltyPoints
- Model.AccountDashboardStatisticReferrals
- Model.AccountDashboardStatisticRevenue
- Model.AccountEntity
- Model.AccountLimits
- Model.AddFreeItemEffectProps
- Model.AddItemCatalogAction
- Model.AddLoyaltyPoints
- Model.AddLoyaltyPointsEffectProps
- Model.AddedDeductedPointsNotificationPolicy
- Model.AdditionalCost
- Model.Application
- Model.ApplicationAPIKey
- Model.ApplicationApiHealth
- Model.ApplicationCampaignStats
- Model.ApplicationCustomer
- Model.ApplicationCustomerEntity
- Model.ApplicationEntity
- Model.ApplicationEvent
- Model.ApplicationNotification
- Model.ApplicationReferee
- Model.ApplicationSession
- Model.ApplicationSessionEntity
- Model.AsyncCouponCreationResponse
- Model.Attribute
- Model.AttributesMandatory
- Model.AttributesSettings
- Model.Audience
- Model.AudienceAnalytics
- Model.AudienceCustomer
- Model.AudienceIntegrationID
- Model.AudienceMembership
- Model.AwardGiveawayEffectProps
- Model.BaseLoyaltyProgram
- Model.BaseNotification
- Model.BaseNotificationEntity
- Model.BaseNotificationWebhook
- Model.BaseNotifications
- Model.BaseSamlConnection
- Model.Binding
- Model.BulkApplicationNotification
- Model.BulkCampaignNotification
- Model.Campaign
- Model.CampaignActivationRequest
- Model.CampaignAnalytics
- Model.CampaignCollection
- Model.CampaignCollectionWithoutPayload
- Model.CampaignCopy
- Model.CampaignCreatedNotification
- Model.CampaignDeletedNotification
- Model.CampaignEditedNotification
- Model.CampaignEntity
- Model.CampaignGroup
- Model.CampaignGroupEntity
- Model.CampaignNotification
- Model.CampaignPrioritiesChangedNotification
- Model.CampaignPrioritiesV2
- Model.CampaignRulesetChangedNotification
- Model.CampaignSearch
- Model.CampaignSet
- Model.CampaignSetBranchNode
- Model.CampaignSetIDs
- Model.CampaignSetLeafNode
- Model.CampaignSetNode
- Model.CampaignSetV2
- Model.CampaignStateChangedNotification
- Model.CampaignTemplate
- Model.CampaignTemplateCollection
- Model.CampaignTemplateParams
- Model.CardLedgerTransactionLogEntry
- Model.CardLedgerTransactionLogEntryIntegrationAPI
- Model.CartItem
- Model.Catalog
- Model.CatalogAction
- Model.CatalogActionFilter
- Model.CatalogItem
- Model.CatalogSyncRequest
- Model.CatalogsStrikethroughNotificationPolicy
- Model.Change
- Model.ChangeProfilePassword
- Model.CodeGeneratorSettings
- Model.Collection
- Model.CollectionItem
- Model.CollectionWithoutPayload
- Model.Coupon
- Model.CouponConstraints
- Model.CouponCreatedEffectProps
- Model.CouponCreationJob
- Model.CouponLimitConfigs
- Model.CouponRejectionReason
- Model.CouponReservations
- Model.CouponSearch
- Model.CouponValue
- Model.CouponsNotificationPolicy
- Model.CreateApplicationAPIKey
- Model.CreateManagementKey
- Model.CreateTemplateCampaign
- Model.CreateTemplateCampaignResponse
- Model.CustomEffect
- Model.CustomEffectProps
- Model.CustomerActivityReport
- Model.CustomerAnalytics
- Model.CustomerInventory
- Model.CustomerProfile
- Model.CustomerProfileAudienceRequest
- Model.CustomerProfileAudienceRequestItem
- Model.CustomerProfileIntegrationRequestV2
- Model.CustomerProfileSearchQuery
- Model.CustomerProfileUpdateV2Response
- Model.CustomerSession
- Model.CustomerSessionV2
- Model.DeductLoyaltyPoints
- Model.DeductLoyaltyPointsEffectProps
- Model.Effect
- Model.EffectEntity
- Model.EmailEntity
- Model.Endpoint
- Model.Entity
- Model.EntityWithTalangVisibleID
- Model.Environment
- Model.ErrorEffectProps
- Model.ErrorResponse
- Model.ErrorResponseWithStatus
- Model.ErrorSource
- Model.EvaluableCampaignIds
- Model.Event
- Model.EventType
- Model.EventV2
- Model.ExpiringPointsNotificationPolicy
- Model.ExpiringPointsNotificationTrigger
- Model.Export
- Model.FeatureFlag
- Model.FeaturesFeed
- Model.FeedNotification
- Model.FrontendState
- Model.FuncArgDef
- Model.FunctionDef
- Model.Giveaway
- Model.GiveawaysPool
- Model.Import
- Model.ImportEntity
- Model.InlineResponse200
- Model.InlineResponse2001
- Model.InlineResponse20010
- Model.InlineResponse20011
- Model.InlineResponse20012
- Model.InlineResponse20013
- Model.InlineResponse20014
- Model.InlineResponse20015
- Model.InlineResponse20016
- Model.InlineResponse20017
- Model.InlineResponse20018
- Model.InlineResponse20019
- Model.InlineResponse2002
- Model.InlineResponse20020
- Model.InlineResponse20021
- Model.InlineResponse20022
- Model.InlineResponse20023
- Model.InlineResponse20024
- Model.InlineResponse20025
- Model.InlineResponse20026
- Model.InlineResponse20027
- Model.InlineResponse20028
- Model.InlineResponse20029
- Model.InlineResponse2003
- Model.InlineResponse20030
- Model.InlineResponse20031
- Model.InlineResponse20032
- Model.InlineResponse20033
- Model.InlineResponse20034
- Model.InlineResponse20035
- Model.InlineResponse20036
- Model.InlineResponse20037
- Model.InlineResponse20038
- Model.InlineResponse20039
- Model.InlineResponse2004
- Model.InlineResponse20040
- Model.InlineResponse2005
- Model.InlineResponse2006
- Model.InlineResponse2007
- Model.InlineResponse2008
- Model.InlineResponse2009
- Model.InlineResponse201
- Model.IntegrationCoupon
- Model.IntegrationCustomerSessionResponse
- Model.IntegrationEntity
- Model.IntegrationEvent
- Model.IntegrationEventV2Request
- Model.IntegrationProfileEntity
- Model.IntegrationRequest
- Model.IntegrationState
- Model.IntegrationStateV2
- Model.InventoryCoupon
- Model.InventoryReferral
- Model.ItemAttribute
- Model.LedgerEntry
- Model.LedgerInfo
- Model.LedgerTransactionLogEntryIntegrationAPI
- Model.LibraryAttribute
- Model.LimitConfig
- Model.LimitCounter
- Model.LoginParams
- Model.Loyalty
- Model.LoyaltyBalance
- Model.LoyaltyBalances
- Model.LoyaltyCard
- Model.LoyaltyCardProfileRegistration
- Model.LoyaltyCardRegistration
- Model.LoyaltyDashboardData
- Model.LoyaltyDashboardPointsBreakdown
- Model.LoyaltyLedger
- Model.LoyaltyLedgerEntry
- Model.LoyaltyLedgerTransactions
- Model.LoyaltyMembership
- Model.LoyaltyProgram
- Model.LoyaltyProgramBalance
- Model.LoyaltyProgramEntity
- Model.LoyaltyProgramLedgers
- Model.LoyaltyProgramTransaction
- Model.LoyaltyStatistics
- Model.LoyaltySubLedger
- Model.LoyaltyTier
- Model.ManagementKey
- Model.ManagerConfig
- Model.Meta
- Model.MultiApplicationEntity
- Model.MultipleAttribute
- Model.MultipleAudiences
- Model.MultipleAudiencesItem
- Model.MultipleCustomerProfileIntegrationRequest
- Model.MultipleCustomerProfileIntegrationRequestItem
- Model.MultipleCustomerProfileIntegrationResponseV2
- Model.MultipleNewAttribute
- Model.MultipleNewAudiences
- Model.MutableEntity
- Model.NewAccount
- Model.NewAccountSignUp
- Model.NewAdditionalCost
- Model.NewApplication
- Model.NewApplicationAPIKey
- Model.NewAttribute
- Model.NewAudience
- Model.NewBaseNotification
- Model.NewCampaign
- Model.NewCampaignCollection
- Model.NewCampaignGroup
- Model.NewCampaignSet
- Model.NewCampaignSetV2
- Model.NewCampaignTemplate
- Model.NewCatalog
- Model.NewCollection
- Model.NewCouponCreationJob
- Model.NewCoupons
- Model.NewCouponsForMultipleRecipients
- Model.NewCustomEffect
- Model.NewCustomerProfile
- Model.NewCustomerSession
- Model.NewCustomerSessionV2
- Model.NewEvent
- Model.NewEventType
- Model.NewGiveawaysPool
- Model.NewInternalAudience
- Model.NewInvitation
- Model.NewInviteEmail
- Model.NewLoyaltyProgram
- Model.NewLoyaltyTier
- Model.NewManagementKey
- Model.NewMultipleAudiencesItem
- Model.NewNotificationWebhook
- Model.NewOutgoingIntegrationWebhook
- Model.NewPassword
- Model.NewPasswordEmail
- Model.NewPicklist
- Model.NewReferral
- Model.NewReferralsForMultipleAdvocates
- Model.NewReturn
- Model.NewRole
- Model.NewRuleset
- Model.NewSamlConnection
- Model.NewTemplateDef
- Model.NewUser
- Model.NewWebhook
- Model.Notification
- Model.NotificationWebhook
- Model.OutgoingIntegrationBrazePolicy
- Model.OutgoingIntegrationConfiguration
- Model.OutgoingIntegrationType
- Model.OutgoingIntegrationTypes
- Model.OutgoingIntegrationWebhookTemplate
- Model.OutgoingIntegrationWebhookTemplates
- Model.PatchItemCatalogAction
- Model.PatchManyItemsCatalogAction
- Model.Picklist
- Model.PriorityPosition
- Model.ProfileAudiencesChanges
- Model.RedeemReferralEffectProps
- Model.Referral
- Model.ReferralConstraints
- Model.ReferralCreatedEffectProps
- Model.ReferralRejectionReason
- Model.RejectCouponEffectProps
- Model.RejectReferralEffectProps
- Model.RemoveItemCatalogAction
- Model.RemoveManyItemsCatalogAction
- Model.ReopenSessionResponse
- Model.ReserveCouponEffectProps
- Model.Return
- Model.ReturnIntegrationRequest
- Model.ReturnedCartItem
- Model.Role
- Model.RoleAssign
- Model.RoleMembership
- Model.RoleV2
- Model.RoleV2ApplicationDetails
- Model.RoleV2PermissionSet
- Model.RoleV2Permissions
- Model.RoleV2PermissionsRoles
- Model.RollbackAddedLoyaltyPointsEffectProps
- Model.RollbackCouponEffectProps
- Model.RollbackDeductedLoyaltyPointsEffectProps
- Model.RollbackDiscountEffectProps
- Model.RollbackReferralEffectProps
- Model.Rule
- Model.RuleFailureReason
- Model.Ruleset
- Model.SamlConnection
- Model.SamlConnectionMetadata
- Model.SamlLoginEndpoint
- Model.Session
- Model.SetDiscountEffectProps
- Model.SetDiscountPerAdditionalCostEffectProps
- Model.SetDiscountPerAdditionalCostPerItemEffectProps
- Model.SetDiscountPerItemEffectProps
- Model.ShowBundleMetadataEffectProps
- Model.ShowNotificationEffectProps
- Model.SlotDef
- Model.StrikethroughChangedItem
- Model.StrikethroughCustomEffectPerItemProps
- Model.StrikethroughEffect
- Model.StrikethroughLabelingNotification
- Model.StrikethroughSetDiscountPerItemEffectProps
- Model.StrikethroughTrigger
- Model.TalangAttribute
- Model.TalangAttributeVisibility
- Model.TemplateArgDef
- Model.TemplateDef
- Model.TemplateLimitConfig
- Model.Tier
- Model.TransferLoyaltyCard
- Model.TriggerWebhookEffectProps
- Model.UpdateAccount
- Model.UpdateApplication
- Model.UpdateAttributeEffectProps
- Model.UpdateAudience
- Model.UpdateCampaign
- Model.UpdateCampaignCollection
- Model.UpdateCampaignGroup
- Model.UpdateCampaignTemplate
- Model.UpdateCatalog
- Model.UpdateCollection
- Model.UpdateCoupon
- Model.UpdateCouponBatch
- Model.UpdateCustomEffect
- Model.UpdateLoyaltyCard
- Model.UpdateLoyaltyProgram
- Model.UpdatePicklist
- Model.UpdateReferral
- Model.UpdateReferralBatch
- Model.UpdateRole
- Model.UpdateUser
- Model.UpdateUserLatestFeedTimestamp
- Model.User
- Model.UserEntity
- Model.UserFeedNotifications
- Model.Webhook
- Model.WebhookActivationLogEntry
- Model.WebhookLogEntry
- Model.WillAwardGiveawayEffectProps
<a name="documentation-for-authorization"></a>
Documentation for Authorization
<a name="api_key_v1"></a>
api_key_v1
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header
<a name="management_key"></a>
management_key
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header
<a name="manager_auth"></a>
manager_auth
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- JsonSubTypes (>= 1.5.2)
- Newtonsoft.Json (>= 13.0.2)
- RestSharp (>= 106.15.0)
- System.ComponentModel.Annotations (>= 4.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
7.0.1 | 103 | 10/24/2024 |
6.0.0 | 3,448 | 6/5/2024 |
5.0.2 | 26,381 | 11/14/2023 |
5.0.1 | 2,539 | 9/1/2023 |
5.0.0 | 12,443 | 5/9/2023 |
4.0.4 | 19,093 | 3/27/2022 |
4.0.3 | 1,951 | 3/14/2022 |
4.0.2 | 37,887 | 11/8/2021 |
4.0.1 | 2,332 | 8/13/2021 |
4.0.0 | 1,666 | 6/25/2021 |
3.5.0 | 2,389 | 6/2/2021 |
3.4.0 | 394 | 4/13/2021 |
3.3.0 | 1,572 | 10/10/2020 |
3.2.0 | 742 | 7/31/2020 |
3.1.0 | 577 | 6/5/2020 |
3.0.0 | 567 | 4/20/2020 |
2.3.0 | 1,279 | 12/23/2019 |
2.2.0 | 789 | 11/14/2019 |
2.1.0 | 566 | 10/1/2019 |
2.0.1 | 620 | 9/11/2019 |
2.0.0 | 602 | 9/5/2019 |
1.0.0 | 1,077 | 7/31/2017 |