Skip to content

Commit caff13e

Browse files
authored
v5.0.1: Fix Asynchronous calls authentication bug, introducing giveaways export, loyalty tiers import (#27)
## Summary ### Misc - Fix bug that resulted in an authentication error when calling API functions via their asynchronous versions (i.e. `GetApplicationAsync`) ### Management API - [Export giveaway codes of a giveaway pool ](https://docs.talon.one/management-api#tag/Giveaways/operation/exportPoolGiveaways) - [Import customers into loyalty tiers](https://docs.talon.one/management-api#tag/Loyalty/operation/importLoyaltyCustomersTiers) - [List items in a catalog](https://docs.talon.one/management-api#tag/Catalogs/operation/listCatalogItems)
1 parent 57c15cc commit caff13e

File tree

160 files changed

+10675
-2032
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

160 files changed

+10675
-2032
lines changed

README.md

Lines changed: 23 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ is `https://yourbaseurl.talon.one/v2/customer_sessions/{Id}`
1818

1919
This C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
2020

21-
- SDK version: 5.0.0
21+
- SDK version: 5.0.1
2222
- Build package: org.openapitools.codegen.languages.CSharpNetCoreClientCodegen
2323

2424
<a name="frameworks-supported"></a>
@@ -58,7 +58,6 @@ using TalonOne.Model;
5858

5959
### Integration API
6060

61-
**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](https://docs.talon.one/docs/dev/tutorials/migrating-to-v2) for more information.
6261

6362
```csharp
6463
using System.Collections.Generic;
@@ -242,8 +241,7 @@ Class | Method | HTTP request | Description
242241
*IntegrationApi* | [**ReopenCustomerSession**](docs/IntegrationApi.md#reopencustomersession) | **PUT** /v2/customer_sessions/{customerSessionId}/reopen | Reopen customer session
243242
*IntegrationApi* | [**ReturnCartItems**](docs/IntegrationApi.md#returncartitems) | **POST** /v2/customer_sessions/{customerSessionId}/returns | Return cart items
244243
*IntegrationApi* | [**SyncCatalog**](docs/IntegrationApi.md#synccatalog) | **PUT** /v1/catalogs/{catalogId}/sync | Sync cart item catalog
245-
*IntegrationApi* | [**TrackEvent**](docs/IntegrationApi.md#trackevent) | **POST** /v1/events | Track event
246-
*IntegrationApi* | [**TrackEventV2**](docs/IntegrationApi.md#trackeventv2) | **POST** /v2/events | Track event V2
244+
*IntegrationApi* | [**TrackEventV2**](docs/IntegrationApi.md#trackeventv2) | **POST** /v2/events | Track event
247245
*IntegrationApi* | [**UpdateAudienceCustomersAttributes**](docs/IntegrationApi.md#updateaudiencecustomersattributes) | **PUT** /v2/audience_customers/{audienceId}/attributes | Update profile attributes for all customers in audience
248246
*IntegrationApi* | [**UpdateAudienceV2**](docs/IntegrationApi.md#updateaudiencev2) | **PUT** /v2/audiences/{audienceId} | Update audience name
249247
*IntegrationApi* | [**UpdateCustomerProfileAudiences**](docs/IntegrationApi.md#updatecustomerprofileaudiences) | **POST** /v2/customer_audiences | Update multiple customer profiles' audiences
@@ -284,6 +282,7 @@ Class | Method | HTTP request | Description
284282
*ManagementApi* | [**ExportLoyaltyCardBalances**](docs/ManagementApi.md#exportloyaltycardbalances) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/export_card_balances | Export all card transaction logs
285283
*ManagementApi* | [**ExportLoyaltyCardLedger**](docs/ManagementApi.md#exportloyaltycardledger) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/export_log | Export card's ledger log
286284
*ManagementApi* | [**ExportLoyaltyLedger**](docs/ManagementApi.md#exportloyaltyledger) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/export_log | Export customer's transaction logs
285+
*ManagementApi* | [**ExportPoolGiveaways**](docs/ManagementApi.md#exportpoolgiveaways) | **GET** /v1/giveaways/pools/{poolId}/export | Export giveaway codes of a giveaway pool
287286
*ManagementApi* | [**ExportReferrals**](docs/ManagementApi.md#exportreferrals) | **GET** /v1/applications/{applicationId}/export_referrals | Export referrals
288287
*ManagementApi* | [**GetAccessLogsWithoutTotalCount**](docs/ManagementApi.md#getaccesslogswithouttotalcount) | **GET** /v1/applications/{applicationId}/access_logs/no_total | Get access logs for Application
289288
*ManagementApi* | [**GetAccount**](docs/ManagementApi.md#getaccount) | **GET** /v1/accounts/{accountId} | Get account details
@@ -349,14 +348,17 @@ Class | Method | HTTP request | Description
349348
*ManagementApi* | [**ImportCollection**](docs/ManagementApi.md#importcollection) | **POST** /v1/applications/{applicationId}/campaigns/{campaignId}/collections/{collectionId}/import | Import data in existing collection
350349
*ManagementApi* | [**ImportCoupons**](docs/ManagementApi.md#importcoupons) | **POST** /v1/applications/{applicationId}/campaigns/{campaignId}/import_coupons | Import coupons
351350
*ManagementApi* | [**ImportLoyaltyCards**](docs/ManagementApi.md#importloyaltycards) | **POST** /v1/loyalty_programs/{loyaltyProgramId}/import_cards | Import loyalty cards
351+
*ManagementApi* | [**ImportLoyaltyCustomersTiers**](docs/ManagementApi.md#importloyaltycustomerstiers) | **POST** /v1/loyalty_programs/{loyaltyProgramId}/import_customers_tiers | Import customers into loyalty tiers
352352
*ManagementApi* | [**ImportLoyaltyPoints**](docs/ManagementApi.md#importloyaltypoints) | **POST** /v1/loyalty_programs/{loyaltyProgramId}/import_points | Import loyalty points
353353
*ManagementApi* | [**ImportPoolGiveaways**](docs/ManagementApi.md#importpoolgiveaways) | **POST** /v1/giveaways/pools/{poolId}/import | Import giveaway codes into a giveaway pool
354354
*ManagementApi* | [**ImportReferrals**](docs/ManagementApi.md#importreferrals) | **POST** /v1/applications/{applicationId}/campaigns/{campaignId}/import_referrals | Import referrals
355355
*ManagementApi* | [**ListAccountCollections**](docs/ManagementApi.md#listaccountcollections) | **GET** /v1/collections | List collections in account
356+
*ManagementApi* | [**ListCatalogItems**](docs/ManagementApi.md#listcatalogitems) | **GET** /v1/catalogs/{catalogId}/items | List items in a catalog
356357
*ManagementApi* | [**ListCollections**](docs/ManagementApi.md#listcollections) | **GET** /v1/applications/{applicationId}/campaigns/{campaignId}/collections | List collections
357358
*ManagementApi* | [**ListCollectionsInApplication**](docs/ManagementApi.md#listcollectionsinapplication) | **GET** /v1/applications/{applicationId}/collections | List collections in application
358359
*ManagementApi* | [**PostAddedDeductedPointsNotification**](docs/ManagementApi.md#postaddeddeductedpointsnotification) | **POST** /v1/loyalty_programs/{loyaltyProgramId}/notifications/added_deducted_points | Create notification about added or deducted loyalty points
359360
*ManagementApi* | [**PostCatalogsStrikethroughNotification**](docs/ManagementApi.md#postcatalogsstrikethroughnotification) | **POST** /v1/catalogs/{applicationId}/notifications/strikethrough | Create strikethrough notification
361+
*ManagementApi* | [**PostPendingPointsNotification**](docs/ManagementApi.md#postpendingpointsnotification) | **POST** /v1/loyalty_programs/{loyaltyProgramId}/notifications/pending_points | Create notification about pending loyalty points
360362
*ManagementApi* | [**RemoveLoyaltyPoints**](docs/ManagementApi.md#removeloyaltypoints) | **PUT** /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/deduct_points | Deduct points from customer profile
361363
*ManagementApi* | [**ResetPassword**](docs/ManagementApi.md#resetpassword) | **POST** /v1/reset_password | Reset password
362364
*ManagementApi* | [**SearchCouponsAdvancedApplicationWideWithoutTotalCount**](docs/ManagementApi.md#searchcouponsadvancedapplicationwidewithouttotalcount) | **POST** /v1/applications/{applicationId}/coupons_search_advanced/no_total | List coupons that match the given attributes (without total count)
@@ -421,6 +423,7 @@ Class | Method | HTTP request | Description
421423
- [Model.AudienceIntegrationID](docs/AudienceIntegrationID.md)
422424
- [Model.AudienceMembership](docs/AudienceMembership.md)
423425
- [Model.AwardGiveawayEffectProps](docs/AwardGiveawayEffectProps.md)
426+
- [Model.BaseCampaign](docs/BaseCampaign.md)
424427
- [Model.BaseLoyaltyProgram](docs/BaseLoyaltyProgram.md)
425428
- [Model.BaseNotification](docs/BaseNotification.md)
426429
- [Model.BaseNotificationEntity](docs/BaseNotificationEntity.md)
@@ -440,19 +443,18 @@ Class | Method | HTTP request | Description
440443
- [Model.CampaignDeletedNotification](docs/CampaignDeletedNotification.md)
441444
- [Model.CampaignEditedNotification](docs/CampaignEditedNotification.md)
442445
- [Model.CampaignEntity](docs/CampaignEntity.md)
446+
- [Model.CampaignEvaluationGroup](docs/CampaignEvaluationGroup.md)
447+
- [Model.CampaignEvaluationPosition](docs/CampaignEvaluationPosition.md)
448+
- [Model.CampaignEvaluationTreeChangedNotification](docs/CampaignEvaluationTreeChangedNotification.md)
443449
- [Model.CampaignGroup](docs/CampaignGroup.md)
444450
- [Model.CampaignGroupEntity](docs/CampaignGroupEntity.md)
445451
- [Model.CampaignNotification](docs/CampaignNotification.md)
446-
- [Model.CampaignPrioritiesChangedNotification](docs/CampaignPrioritiesChangedNotification.md)
447-
- [Model.CampaignPrioritiesV2](docs/CampaignPrioritiesV2.md)
448452
- [Model.CampaignRulesetChangedNotification](docs/CampaignRulesetChangedNotification.md)
449453
- [Model.CampaignSearch](docs/CampaignSearch.md)
450454
- [Model.CampaignSet](docs/CampaignSet.md)
451455
- [Model.CampaignSetBranchNode](docs/CampaignSetBranchNode.md)
452-
- [Model.CampaignSetIDs](docs/CampaignSetIDs.md)
453456
- [Model.CampaignSetLeafNode](docs/CampaignSetLeafNode.md)
454457
- [Model.CampaignSetNode](docs/CampaignSetNode.md)
455-
- [Model.CampaignSetV2](docs/CampaignSetV2.md)
456458
- [Model.CampaignStateChangedNotification](docs/CampaignStateChangedNotification.md)
457459
- [Model.CampaignTemplate](docs/CampaignTemplate.md)
458460
- [Model.CampaignTemplateCollection](docs/CampaignTemplateCollection.md)
@@ -521,12 +523,12 @@ Class | Method | HTTP request | Description
521523
- [Model.Export](docs/Export.md)
522524
- [Model.FeatureFlag](docs/FeatureFlag.md)
523525
- [Model.FeaturesFeed](docs/FeaturesFeed.md)
524-
- [Model.FeedNotification](docs/FeedNotification.md)
525526
- [Model.FrontendState](docs/FrontendState.md)
526527
- [Model.FuncArgDef](docs/FuncArgDef.md)
527528
- [Model.FunctionDef](docs/FunctionDef.md)
528529
- [Model.Giveaway](docs/Giveaway.md)
529530
- [Model.GiveawaysPool](docs/GiveawaysPool.md)
531+
- [Model.IdentifiableEntity](docs/IdentifiableEntity.md)
530532
- [Model.Import](docs/Import.md)
531533
- [Model.ImportEntity](docs/ImportEntity.md)
532534
- [Model.InlineResponse200](docs/InlineResponse200.md)
@@ -565,6 +567,7 @@ Class | Method | HTTP request | Description
565567
- [Model.InlineResponse20039](docs/InlineResponse20039.md)
566568
- [Model.InlineResponse2004](docs/InlineResponse2004.md)
567569
- [Model.InlineResponse20040](docs/InlineResponse20040.md)
570+
- [Model.InlineResponse20041](docs/InlineResponse20041.md)
568571
- [Model.InlineResponse2005](docs/InlineResponse2005.md)
569572
- [Model.InlineResponse2006](docs/InlineResponse2006.md)
570573
- [Model.InlineResponse2007](docs/InlineResponse2007.md)
@@ -606,6 +609,7 @@ Class | Method | HTTP request | Description
606609
- [Model.LoyaltyProgramBalance](docs/LoyaltyProgramBalance.md)
607610
- [Model.LoyaltyProgramEntity](docs/LoyaltyProgramEntity.md)
608611
- [Model.LoyaltyProgramLedgers](docs/LoyaltyProgramLedgers.md)
612+
- [Model.LoyaltyProgramSubledgers](docs/LoyaltyProgramSubledgers.md)
609613
- [Model.LoyaltyProgramTransaction](docs/LoyaltyProgramTransaction.md)
610614
- [Model.LoyaltyStatistics](docs/LoyaltyStatistics.md)
611615
- [Model.LoyaltySubLedger](docs/LoyaltySubLedger.md)
@@ -633,9 +637,9 @@ Class | Method | HTTP request | Description
633637
- [Model.NewBaseNotification](docs/NewBaseNotification.md)
634638
- [Model.NewCampaign](docs/NewCampaign.md)
635639
- [Model.NewCampaignCollection](docs/NewCampaignCollection.md)
640+
- [Model.NewCampaignEvaluationGroup](docs/NewCampaignEvaluationGroup.md)
636641
- [Model.NewCampaignGroup](docs/NewCampaignGroup.md)
637642
- [Model.NewCampaignSet](docs/NewCampaignSet.md)
638-
- [Model.NewCampaignSetV2](docs/NewCampaignSetV2.md)
639643
- [Model.NewCampaignTemplate](docs/NewCampaignTemplate.md)
640644
- [Model.NewCatalog](docs/NewCatalog.md)
641645
- [Model.NewCollection](docs/NewCollection.md)
@@ -665,6 +669,7 @@ Class | Method | HTTP request | Description
665669
- [Model.NewReferralsForMultipleAdvocates](docs/NewReferralsForMultipleAdvocates.md)
666670
- [Model.NewReturn](docs/NewReturn.md)
667671
- [Model.NewRole](docs/NewRole.md)
672+
- [Model.NewRoleV2](docs/NewRoleV2.md)
668673
- [Model.NewRuleset](docs/NewRuleset.md)
669674
- [Model.NewSamlConnection](docs/NewSamlConnection.md)
670675
- [Model.NewTemplateDef](docs/NewTemplateDef.md)
@@ -674,14 +679,15 @@ Class | Method | HTTP request | Description
674679
- [Model.NotificationWebhook](docs/NotificationWebhook.md)
675680
- [Model.OutgoingIntegrationBrazePolicy](docs/OutgoingIntegrationBrazePolicy.md)
676681
- [Model.OutgoingIntegrationConfiguration](docs/OutgoingIntegrationConfiguration.md)
682+
- [Model.OutgoingIntegrationTemplate](docs/OutgoingIntegrationTemplate.md)
683+
- [Model.OutgoingIntegrationTemplateWithConfigurationDetails](docs/OutgoingIntegrationTemplateWithConfigurationDetails.md)
684+
- [Model.OutgoingIntegrationTemplates](docs/OutgoingIntegrationTemplates.md)
677685
- [Model.OutgoingIntegrationType](docs/OutgoingIntegrationType.md)
678686
- [Model.OutgoingIntegrationTypes](docs/OutgoingIntegrationTypes.md)
679-
- [Model.OutgoingIntegrationWebhookTemplate](docs/OutgoingIntegrationWebhookTemplate.md)
680-
- [Model.OutgoingIntegrationWebhookTemplates](docs/OutgoingIntegrationWebhookTemplates.md)
681687
- [Model.PatchItemCatalogAction](docs/PatchItemCatalogAction.md)
682688
- [Model.PatchManyItemsCatalogAction](docs/PatchManyItemsCatalogAction.md)
689+
- [Model.PendingPointsNotificationPolicy](docs/PendingPointsNotificationPolicy.md)
683690
- [Model.Picklist](docs/Picklist.md)
684-
- [Model.PriorityPosition](docs/PriorityPosition.md)
685691
- [Model.ProfileAudiencesChanges](docs/ProfileAudiencesChanges.md)
686692
- [Model.RedeemReferralEffectProps](docs/RedeemReferralEffectProps.md)
687693
- [Model.Referral](docs/Referral.md)
@@ -702,9 +708,10 @@ Class | Method | HTTP request | Description
702708
- [Model.RoleMembership](docs/RoleMembership.md)
703709
- [Model.RoleV2](docs/RoleV2.md)
704710
- [Model.RoleV2ApplicationDetails](docs/RoleV2ApplicationDetails.md)
711+
- [Model.RoleV2Base](docs/RoleV2Base.md)
705712
- [Model.RoleV2PermissionSet](docs/RoleV2PermissionSet.md)
706713
- [Model.RoleV2Permissions](docs/RoleV2Permissions.md)
707-
- [Model.RoleV2PermissionsRoles](docs/RoleV2PermissionsRoles.md)
714+
- [Model.RoleV2RolesGroup](docs/RoleV2RolesGroup.md)
708715
- [Model.RollbackAddedLoyaltyPointsEffectProps](docs/RollbackAddedLoyaltyPointsEffectProps.md)
709716
- [Model.RollbackCouponEffectProps](docs/RollbackCouponEffectProps.md)
710717
- [Model.RollbackDeductedLoyaltyPointsEffectProps](docs/RollbackDeductedLoyaltyPointsEffectProps.md)
@@ -744,6 +751,7 @@ Class | Method | HTTP request | Description
744751
- [Model.UpdateAudience](docs/UpdateAudience.md)
745752
- [Model.UpdateCampaign](docs/UpdateCampaign.md)
746753
- [Model.UpdateCampaignCollection](docs/UpdateCampaignCollection.md)
754+
- [Model.UpdateCampaignEvaluationGroup](docs/UpdateCampaignEvaluationGroup.md)
747755
- [Model.UpdateCampaignGroup](docs/UpdateCampaignGroup.md)
748756
- [Model.UpdateCampaignTemplate](docs/UpdateCampaignTemplate.md)
749757
- [Model.UpdateCatalog](docs/UpdateCatalog.md)
@@ -758,13 +766,12 @@ Class | Method | HTTP request | Description
758766
- [Model.UpdateReferralBatch](docs/UpdateReferralBatch.md)
759767
- [Model.UpdateRole](docs/UpdateRole.md)
760768
- [Model.UpdateUser](docs/UpdateUser.md)
761-
- [Model.UpdateUserLatestFeedTimestamp](docs/UpdateUserLatestFeedTimestamp.md)
762769
- [Model.User](docs/User.md)
763770
- [Model.UserEntity](docs/UserEntity.md)
764-
- [Model.UserFeedNotifications](docs/UserFeedNotifications.md)
765771
- [Model.Webhook](docs/Webhook.md)
766772
- [Model.WebhookActivationLogEntry](docs/WebhookActivationLogEntry.md)
767773
- [Model.WebhookLogEntry](docs/WebhookLogEntry.md)
774+
- [Model.WebhookWithOutgoingIntegrationDetails](docs/WebhookWithOutgoingIntegrationDetails.md)
768775
- [Model.WillAwardGiveawayEffectProps](docs/WillAwardGiveawayEffectProps.md)
769776

770777

docs/AddLoyaltyPoints.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**Points** | **decimal** | Amount of loyalty points. |
88
**Name** | **string** | Name / reason for the point addition. | [optional]
9-
**ValidityDuration** | **string** | The time format is either: - &#x60;immediate&#x60; or, - an **integer** followed by one letter indicating the time unit. Examples: &#x60;immediate&#x60;, &#x60;30s&#x60;, &#x60;40m&#x60;, &#x60;1h&#x60;, &#x60;5D&#x60;, &#x60;7W&#x60;, &#x60;10M&#x60;. Available units: - &#x60;s&#x60;: seconds - &#x60;m&#x60;: minutes - &#x60;h&#x60;: hours - &#x60;D&#x60;: days - &#x60;W&#x60;: weeks - &#x60;M&#x60;: months You can round certain units up or down: - &#x60;_D&#x60; for rounding down days only. Signifies the start of the day. - &#x60;_U&#x60; for rounding up days, weeks and months. Signifies the end of the day, week, or month. If passed, &#x60;validUntil&#x60; should be omitted. | [optional]
9+
**ValidityDuration** | **string** | The time format is either: - &#x60;immediate&#x60; or, - an **integer** followed by one letter indicating the time unit. Examples: &#x60;immediate&#x60;, &#x60;30s&#x60;, &#x60;40m&#x60;, &#x60;1h&#x60;, &#x60;5D&#x60;, &#x60;7W&#x60;, &#x60;10M&#x60;, &#x60;15Y&#x60;. Available units: - &#x60;s&#x60;: seconds - &#x60;m&#x60;: minutes - &#x60;h&#x60;: hours - &#x60;D&#x60;: days - &#x60;W&#x60;: weeks - &#x60;M&#x60;: months - &#x60;Y&#x60;: years You can round certain units up or down: - &#x60;_D&#x60; for rounding down days only. Signifies the start of the day. - &#x60;_U&#x60; for rounding up days, weeks, months and years. Signifies the end of the day, week, month or year. If passed, &#x60;validUntil&#x60; should be omitted. | [optional]
1010
**ValidUntil** | **DateTime** | Date and time when points should expire. The value should be provided in RFC 3339 format. If passed, &#x60;validityDuration&#x60; should be omitted. | [optional]
11-
**PendingDuration** | **string** | The amount of time before the points are considered valid. The time format is either: - &#x60;immediate&#x60; or, - an **integer** followed by one letter indicating the time unit. Examples: &#x60;immediate&#x60;, &#x60;30s&#x60;, &#x60;40m&#x60;, &#x60;1h&#x60;, &#x60;5D&#x60;, &#x60;7W&#x60;, &#x60;10M&#x60;. Available units: - &#x60;s&#x60;: seconds - &#x60;m&#x60;: minutes - &#x60;h&#x60;: hours - &#x60;D&#x60;: days - &#x60;W&#x60;: weeks - &#x60;M&#x60;: months You can round certain units up or down: - &#x60;_D&#x60; for rounding down days only. Signifies the start of the day. - &#x60;_U&#x60; for rounding up days, weeks and months. Signifies the end of the day, week, or month. | [optional]
11+
**PendingDuration** | **string** | The amount of time before the points are considered valid. The time format is either: - &#x60;immediate&#x60; or, - an **integer** followed by one letter indicating the time unit. Examples: &#x60;immediate&#x60;, &#x60;30s&#x60;, &#x60;40m&#x60;, &#x60;1h&#x60;, &#x60;5D&#x60;, &#x60;7W&#x60;, &#x60;10M&#x60;, &#x60;15Y&#x60;. Available units: - &#x60;s&#x60;: seconds - &#x60;m&#x60;: minutes - &#x60;h&#x60;: hours - &#x60;D&#x60;: days - &#x60;W&#x60;: weeks - &#x60;M&#x60;: months - &#x60;Y&#x60;: years You can round certain units up or down: - &#x60;_D&#x60; for rounding down days only. Signifies the start of the day. - &#x60;_U&#x60; for rounding up days, weeks, months and years. Signifies the end of the day, week, month or year. | [optional]
1212
**PendingUntil** | **DateTime** | Date and time after the points are considered valid. The value should be provided in RFC 3339 format. If passed, &#x60;pendingDuration&#x60; should be omitted. | [optional]
1313
**SubledgerId** | **string** | ID of the subledger the points are added to. If there is no existing subledger with this ID, the subledger is created automatically. | [optional]
1414
**ApplicationId** | **int** | ID of the Application that is connected to the loyalty program. It is displayed in your Talon.One deployment URL. | [optional]

0 commit comments

Comments
 (0)