Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit 4463620

Browse files
committed
aa
1 parent 7ba70fc commit 4463620

6 files changed

+0
-1401
lines changed

README.md

-3
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,12 @@ Class | Method | HTTP request | Description
105105
*ClientSideApi* | [**listPromotionTiersClientSide**](docs/Api/ClientSideApi.md#listpromotiontiersclientside) | **GET** /client/v1/promotions/tiers | List Promotion Tiers (client-side)
106106
*ClientSideApi* | [**redeemStackedDiscountsClientSide**](docs/Api/ClientSideApi.md#redeemstackeddiscountsclientside) | **POST** /client/v1/redemptions | Redeem Stackable Discounts (client-side)
107107
*ClientSideApi* | [**trackCustomEventClientSide**](docs/Api/ClientSideApi.md#trackcustomeventclientside) | **POST** /client/v1/events | Track Custom Event (client-side)
108-
*ClientSideApi* | [**updateCustomersConsentsClientSide**](docs/Api/ClientSideApi.md#updatecustomersconsentsclientside) | **PUT** /client/v1/customers/{customerId}/consents | Update Customer's consents (client-side) [Deprecated]
109108
*ClientSideApi* | [**validateStackedDiscountsClientSide**](docs/Api/ClientSideApi.md#validatestackeddiscountsclientside) | **POST** /client/v1/validations | Validate Stackable Discounts (client-side)
110109
*CustomersApi* | [**createCustomer**](docs/Api/CustomersApi.md#createcustomer) | **POST** /v1/customers | Create Customer
111110
*CustomersApi* | [**customerPermanentlyDeletion**](docs/Api/CustomersApi.md#customerpermanentlydeletion) | **POST** /v1/customers/{customerId}/permanent-deletion | Delete Customer Permanently
112111
*CustomersApi* | [**deleteCustomer**](docs/Api/CustomersApi.md#deletecustomer) | **DELETE** /v1/customers/{customerId} | Delete Customer
113112
*CustomersApi* | [**getCustomer**](docs/Api/CustomersApi.md#getcustomer) | **GET** /v1/customers/{customerId} | Get Customer
114113
*CustomersApi* | [**importCustomersUsingCsv**](docs/Api/CustomersApi.md#importcustomersusingcsv) | **POST** /v1/customers/importCSV | Import and Update Customers using CSV
115-
*CustomersApi* | [**listCustomerActivities**](docs/Api/CustomersApi.md#listcustomeractivities) | **GET** /v1/customers/{customerId}/activities | List Customer Activities [Deprecated]
116114
*CustomersApi* | [**listCustomerActivity**](docs/Api/CustomersApi.md#listcustomeractivity) | **GET** /v1/customers/{customerId}/activity | List Customer Activity
117115
*CustomersApi* | [**listCustomerRedeemables**](docs/Api/CustomersApi.md#listcustomerredeemables) | **GET** /v1/customers/{customerId}/redeemables | List Customer's Redeemables
118116
*CustomersApi* | [**listCustomerSegments**](docs/Api/CustomersApi.md#listcustomersegments) | **GET** /v1/customers/{customerId}/segments | List Customer's Segments
@@ -359,7 +357,6 @@ Class | Method | HTTP request | Description
359357
- [CustomerWithSummaryLoyaltyReferrals](docs/Model/CustomerWithSummaryLoyaltyReferrals.md)
360358
- [CustomerWithSummaryLoyaltyReferralsAddress](docs/Model/CustomerWithSummaryLoyaltyReferralsAddress.md)
361359
- [CustomerWithSummaryLoyaltyReferralsAssets](docs/Model/CustomerWithSummaryLoyaltyReferralsAssets.md)
362-
- [CustomersActivitiesListResponseBody](docs/Model/CustomersActivitiesListResponseBody.md)
363360
- [CustomersActivityListResponseBody](docs/Model/CustomersActivityListResponseBody.md)
364361
- [CustomersCreateRequestBody](docs/Model/CustomersCreateRequestBody.md)
365362
- [CustomersCreateRequestBodyAddress](docs/Model/CustomersCreateRequestBodyAddress.md)

docs/Api/ClientSideApi.md

-69
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ All URIs are relative to https://api.voucherify.io, except if the operation defi
88
| [**listPromotionTiersClientSide()**](ClientSideApi.md#listPromotionTiersClientSide) | **GET** /client/v1/promotions/tiers | List Promotion Tiers (client-side) |
99
| [**redeemStackedDiscountsClientSide()**](ClientSideApi.md#redeemStackedDiscountsClientSide) | **POST** /client/v1/redemptions | Redeem Stackable Discounts (client-side) |
1010
| [**trackCustomEventClientSide()**](ClientSideApi.md#trackCustomEventClientSide) | **POST** /client/v1/events | Track Custom Event (client-side) |
11-
| [**updateCustomersConsentsClientSide()**](ClientSideApi.md#updateCustomersConsentsClientSide) | **PUT** /client/v1/customers/{customerId}/consents | Update Customer's consents (client-side) [Deprecated] |
1211
| [**validateStackedDiscountsClientSide()**](ClientSideApi.md#validateStackedDiscountsClientSide) | **POST** /client/v1/validations | Validate Stackable Discounts (client-side) |
1312

1413

@@ -292,74 +291,6 @@ try {
292291
[[Back to Model list]](../../README.md#models)
293292
[[Back to README]](../../README.md)
294293

295-
## `updateCustomersConsentsClientSide()`
296-
297-
```php
298-
updateCustomersConsentsClientSide($customer_id, $body)
299-
```
300-
301-
Update Customer's consents (client-side) [Deprecated]
302-
303-
Update marketing permissions for the specified customer. ❗️ Deprecated This endpoint is deprecated. The feature of managing consents will be soon removed from Voucherify, including this endpoint.
304-
305-
### Example
306-
307-
```php
308-
<?php
309-
require_once(__DIR__ . '/vendor/autoload.php');
310-
311-
312-
// Configure API key authorization: X-Client-Application-Id
313-
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Application-Id', 'YOUR_API_KEY');
314-
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
315-
// $config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Application-Id', 'Bearer');
316-
317-
// Configure API key authorization: X-Client-Token
318-
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Token', 'YOUR_API_KEY');
319-
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
320-
// $config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Token', 'Bearer');
321-
322-
323-
$apiInstance = new OpenAPI\Client\Api\ClientSideApi(
324-
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
325-
// This is optional, `GuzzleHttp\Client` will be used as default.
326-
new GuzzleHttp\Client(),
327-
$config
328-
);
329-
$customer_id = 'customer_id_example'; // string | A Voucherify customer identifier or source_id
330-
$body = {"cnst_6jQ5XcUOLnj5L7ImQAdBsJ1I":true,"cnst_VCmucIvAsmDYw2PPAok6bcYy":false}; // object | Key-value pairs where the key is the consent identifier and value is a boolean that identifies if a customer has given the consent or not. To deny all consents use unsubscribed as a consent identifier and true as its value. ## Examples Opt-out from all communication:
331-
332-
try {
333-
$apiInstance->updateCustomersConsentsClientSide($customer_id, $body);
334-
} catch (Exception $e) {
335-
echo 'Exception when calling ClientSideApi->updateCustomersConsentsClientSide: ', $e->getMessage(), PHP_EOL;
336-
}
337-
```
338-
339-
### Parameters
340-
341-
| Name | Type | Description | Notes |
342-
| ------------- | ------------- | ------------- | ------------- |
343-
| **customer_id** | **string**| A Voucherify customer identifier or source_id | |
344-
| **body** | **object**| Key-value pairs where the key is the consent identifier and value is a boolean that identifies if a customer has given the consent or not. To deny all consents use unsubscribed as a consent identifier and true as its value. ## Examples Opt-out from all communication: | [optional] |
345-
346-
### Return type
347-
348-
void (empty response body)
349-
350-
### Authorization
351-
352-
[X-Client-Application-Id](../../README.md#X-Client-Application-Id), [X-Client-Token](../../README.md#X-Client-Token)
353-
354-
### HTTP request headers
355-
356-
- **Content-Type**: `application/json`
357-
- **Accept**: Not defined
358-
359-
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
360-
[[Back to Model list]](../../README.md#models)
361-
[[Back to README]](../../README.md)
362-
363294
## `validateStackedDiscountsClientSide()`
364295

365296
```php

docs/Api/CustomersApi.md

-86
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ All URIs are relative to https://api.voucherify.io, except if the operation defi
99
| [**deleteCustomer()**](CustomersApi.md#deleteCustomer) | **DELETE** /v1/customers/{customerId} | Delete Customer |
1010
| [**getCustomer()**](CustomersApi.md#getCustomer) | **GET** /v1/customers/{customerId} | Get Customer |
1111
| [**importCustomersUsingCsv()**](CustomersApi.md#importCustomersUsingCsv) | **POST** /v1/customers/importCSV | Import and Update Customers using CSV |
12-
| [**listCustomerActivities()**](CustomersApi.md#listCustomerActivities) | **GET** /v1/customers/{customerId}/activities | List Customer Activities [Deprecated] |
1312
| [**listCustomerActivity()**](CustomersApi.md#listCustomerActivity) | **GET** /v1/customers/{customerId}/activity | List Customer Activity |
1413
| [**listCustomerRedeemables()**](CustomersApi.md#listCustomerRedeemables) | **GET** /v1/customers/{customerId}/redeemables | List Customer&#39;s Redeemables |
1514
| [**listCustomerSegments()**](CustomersApi.md#listCustomerSegments) | **GET** /v1/customers/{customerId}/segments | List Customer&#39;s Segments |
@@ -354,91 +353,6 @@ try {
354353
[[Back to Model list]](../../README.md#models)
355354
[[Back to README]](../../README.md)
356355

357-
## `listCustomerActivities()`
358-
359-
```php
360-
listCustomerActivities($customer_id, $limit, $order, $starting_after, $starting_after_id, $campaign_type, $campaign_id, $product_id, $start_date, $end_date): \OpenAPI\Client\Model\CustomersActivitiesListResponseBody
361-
```
362-
363-
List Customer Activities [Deprecated]
364-
365-
> ❗️ Deprecated This endpoint represents the deprecated version of the API responsible for listing customer activities and we do not recommend using it. Developers are encouraged to migrate to the latest version to take advantage of the latest enhancements and bug fixes. No updates will be provided to the deprecated endpoint. Retrieve customer activities.
366-
367-
### Example
368-
369-
```php
370-
<?php
371-
require_once(__DIR__ . '/vendor/autoload.php');
372-
373-
374-
// Configure API key authorization: X-App-Id
375-
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKey('X-App-Id', 'YOUR_API_KEY');
376-
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
377-
// $config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-App-Id', 'Bearer');
378-
379-
// Configure API key authorization: X-App-Token
380-
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKey('X-App-Token', 'YOUR_API_KEY');
381-
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
382-
// $config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-App-Token', 'Bearer');
383-
384-
385-
$apiInstance = new OpenAPI\Client\Api\CustomersApi(
386-
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
387-
// This is optional, `GuzzleHttp\Client` will be used as default.
388-
new GuzzleHttp\Client(),
389-
$config
390-
);
391-
$customer_id = 'customer_id_example'; // string | A Voucherify customers id or source ID of the customer who performed the activities.
392-
$limit = 56; // int | Limits the number of objects to be returned. The limit can range between 1 and 100 items. If no limit is set, it returns 10 items.
393-
$order = new \OpenAPI\Client\Model\ParameterOrder(); // ParameterOrder | Sorts the results using one of the filtering options, where the dash - preceding a sorting option means sorting in a descending order.
394-
$starting_after = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | A cursor for pagination. starting_after is a date-time value that defines your place in the list based on created_at property from the activity object. For instance, if you make a list request and receive 100 objects, ending with an object created at 2020-05-24T13:43:09.024Z, your subsequent call can include starting_after 2020-05-24T13:43:09.024Z in order to fetch the next page of the list.
395-
$starting_after_id = 'starting_after_id_example'; // string | A cursor for pagination. It retrieves the events starting after an event with the given ID.
396-
$campaign_type = new \OpenAPI\Client\Model\ParameterCampaignType(); // ParameterCampaignType | Through this parameter you can control a type of campaign by which Voucherify will filter related customers activity. API will return only records related to that given type. Allowed values: DISCOUNT_COUPONS, REFERRAL_PROGRAM, GIFT_VOUCHERS, PROMOTION, LOYALTY_PROGRAM
397-
$campaign_id = 'campaign_id_example'; // string | By applying this parameter you request only events related to specific campaign identified by its ID.
398-
$product_id = 'product_id_example'; // string | By applying this parameter you request only events related to specific product identified by its ID.
399-
$start_date = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Timestamp representing the date and time which results must end on. Represented in ISO 8601 format.
400-
$end_date = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Timestamp representing the date and time which results must end on. Represented in ISO 8601 format.
401-
402-
try {
403-
$result = $apiInstance->listCustomerActivities($customer_id, $limit, $order, $starting_after, $starting_after_id, $campaign_type, $campaign_id, $product_id, $start_date, $end_date);
404-
print_r($result);
405-
} catch (Exception $e) {
406-
echo 'Exception when calling CustomersApi->listCustomerActivities: ', $e->getMessage(), PHP_EOL;
407-
}
408-
```
409-
410-
### Parameters
411-
412-
| Name | Type | Description | Notes |
413-
| ------------- | ------------- | ------------- | ------------- |
414-
| **customer_id** | **string**| A Voucherify customers id or source ID of the customer who performed the activities. | |
415-
| **limit** | **int**| Limits the number of objects to be returned. The limit can range between 1 and 100 items. If no limit is set, it returns 10 items. | [optional] |
416-
| **order** | [**ParameterOrder**](../Model/.md)| Sorts the results using one of the filtering options, where the dash - preceding a sorting option means sorting in a descending order. | [optional] |
417-
| **starting_after** | **\DateTime**| A cursor for pagination. starting_after is a date-time value that defines your place in the list based on created_at property from the activity object. For instance, if you make a list request and receive 100 objects, ending with an object created at 2020-05-24T13:43:09.024Z, your subsequent call can include starting_after 2020-05-24T13:43:09.024Z in order to fetch the next page of the list. | [optional] |
418-
| **starting_after_id** | **string**| A cursor for pagination. It retrieves the events starting after an event with the given ID. | [optional] |
419-
| **campaign_type** | [**ParameterCampaignType**](../Model/.md)| Through this parameter you can control a type of campaign by which Voucherify will filter related customers activity. API will return only records related to that given type. Allowed values: DISCOUNT_COUPONS, REFERRAL_PROGRAM, GIFT_VOUCHERS, PROMOTION, LOYALTY_PROGRAM | [optional] |
420-
| **campaign_id** | **string**| By applying this parameter you request only events related to specific campaign identified by its ID. | [optional] |
421-
| **product_id** | **string**| By applying this parameter you request only events related to specific product identified by its ID. | [optional] |
422-
| **start_date** | **\DateTime**| Timestamp representing the date and time which results must end on. Represented in ISO 8601 format. | [optional] |
423-
| **end_date** | **\DateTime**| Timestamp representing the date and time which results must end on. Represented in ISO 8601 format. | [optional] |
424-
425-
### Return type
426-
427-
[**\OpenAPI\Client\Model\CustomersActivitiesListResponseBody**](../Model/CustomersActivitiesListResponseBody.md)
428-
429-
### Authorization
430-
431-
[X-App-Id](../../README.md#X-App-Id), [X-App-Token](../../README.md#X-App-Token)
432-
433-
### HTTP request headers
434-
435-
- **Content-Type**: Not defined
436-
- **Accept**: `application/json`
437-
438-
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
439-
[[Back to Model list]](../../README.md#models)
440-
[[Back to README]](../../README.md)
441-
442356
## `listCustomerActivity()`
443357

444358
```php

0 commit comments

Comments
 (0)