-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v4.0.1: Introduce export referrals and Deprecare v1 integration endpo…
…ints (#17) <i id="toc"></i> ## Summary - [Management API](#user-content-management-api) - [Introduce `ExportReferrals` Endpoint](#user-content-export-referral) - [Integration API](#user-content-integration-api) - [Deprecation of Integration API@v1 endpoints](#user-content-deprecation-v1) <i id="management-api"></i> ## Management API <i id="export-referral"></i> ### Introduce [`ExportReferrals`](https://docs.talon.one/management-api/#operation/exportReferrals) Endpoint We introduced an endpoint to export referrals in an application or specific campaign as a CSV file. Please consult [the endpoint reference](https://docs.talon.one/management-api/#operation/exportReferrals) in our developer docs for more details and parameters. [☝️ Back to Table of Contents](#user-content-toc) <i id="integration-api"></i> ## Integration API <i id="deprecation-v1"></i> ###⚠️ ⚠️ Deprecation Notice: Integration API@v1 endpoints Like we mentioned in the last few releases and months, from version 4.0.1 we won't include api@v1 endpoints as part of the official SDK. The endpoints that are now deprecated are: - [Update a Customer Session (V1)](https://github.com/talon-one/TalonOne.cs/blob/master/docs/IntegrationApi.md#updatecustomersession) - [Update a Customer Profile (V1)](https://github.com/talon-one/TalonOne.cs/blob/master/docs/IntegrationApi.md#updatecustomerprofile) If you don't use these as part of your integration, please discard this section. **We will not remove the endpoints**, and they will still be accessible for you to use as part of older SDK versions or custom calls over http. We highly encourage migrating to the correspondent v2 endpoints for easier and more granular integration, as well as new features support (See [our developer docs section](https://docs.talon.one/Getting-Started/APIV2) about API V2.0). [☝️ Back to Table of Contents](#user-content-toc) ## Commit Summary * Initial Commit * Fix csv export endpoints deserialization (custom handler in Exec and ExecAsync)
- Loading branch information
Showing
132 changed files
with
7,191 additions
and
1,580 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# TalonOne.Model.Collection | ||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Id** | **int** | Unique ID for this entity. | | ||
**Created** | **DateTime** | The exact moment this entity was created. | | ||
**AccountId** | **int** | The ID of the account that owns this entity. | | ||
**ApplicationId** | **int** | The ID of the application that owns this entity. | | ||
**CampaignId** | **int** | The ID of the campaign that owns this entity. | | ||
**Modified** | **DateTime** | The exact moment this entity was last modified. | | ||
**Name** | **string** | The name of this collection. | | ||
**Description** | **string** | A short description of the purpose of this collection. | [optional] | ||
**Payload** | **List<string>** | Payload contains limited amount of collection items | [optional] | ||
**ModifiedBy** | **int** | ID of the user who last updated this effect if available. | [optional] | ||
**CreatedBy** | **int** | ID of the user who created this effect. | | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
Oops, something went wrong.