You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 3, 2024. It is now read-only.
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
$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:
|**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]|
> ❗️ 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.
$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.
|**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]|
0 commit comments