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
[**updateContact**](ContactsApi.md#updateContact) | **PUT** /contacts/{identifier} | Update a contact
32
33
[**updateFolder**](ContactsApi.md#updateFolder) | **PUT** /contacts/folders/{folderId} | Update a folder
33
34
[**updateList**](ContactsApi.md#updateList) | **PUT** /contacts/lists/{listId} | Update a list
@@ -686,6 +687,8 @@ This endpoint does not need any parameter.
686
687
687
688
Get a contact's details
688
689
690
+
Along with the contact details, this endpoint will show the statistics of contact for the recent 90 days by default. To fetch the earlier statistics, please use Get contact campaign stats (https://developers.sendinblue.com/reference/contacts-7#getcontactstats) endpoint with the appropriate date ranges.
String identifier ="identifier_example"; // String | Email (urlencoded) OR ID of the contact
773
776
String startDate ="startDate_example"; // String | Mandatory if endDate is used. Starting date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be lower than equal to endDate
774
-
String endDate ="endDate_example"; // String | Mandatory if startDate is used. Ending date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be greater than equal to startDate
777
+
String endDate ="endDate_example"; // String | Mandatory if startDate is used. Ending date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be greater than equal to startDate. Maximum difference between startDate and endDate should not be greater than 90 days
775
778
try {
776
779
GetContactCampaignStats result = apiInstance.getContactStats(identifier, startDate, endDate);
777
780
System.out.println(result);
@@ -787,7 +790,7 @@ Name | Type | Description | Notes
**identifier** | **String**| Email (urlencoded) OR ID of the contact |
789
792
**startDate** | **String**| Mandatory if endDate is used. Starting date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be lower than equal to endDate | [optional]
790
-
**endDate** | **String**| Mandatory if startDate is used. Ending date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be greater than equal to startDate | [optional]
793
+
**endDate** | **String**| Mandatory if startDate is used. Ending date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be greater than equal to startDate. Maximum difference between startDate and endDate should not be greater than 90 days | [optional]
Copy file name to clipboardExpand all lines: docs/CreateSmsCampaign.md
+1
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
9
9
**content** | **String** | Content of the message. The maximum characters used per SMS is 160, if used more than that, it will be counted as more than one SMS |
**scheduledAt** | **String** | UTC date-time on which the campaign has to run (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result. | [optional]
12
+
**unicodeEnabled** | **Boolean** | Format of the message. It indicates whether the content should be treated as unicode or not. | [optional]
**description** | **String** | Description of the webhook | [optional]
9
-
**events** | [**List<EventsEnum>**](#List<EventsEnum>) | Events triggering the webhook. Possible values for Transactional type webhook –`sent` OR `request`, `delivered`, `hardBounce`, `softBounce`, `blocked`, `spam`, `invalid`, `deferred`, `click`, `opened`, `uniqueOpened` and `unsubscribed`and possible values for Marketing type webhook –`spam`, `opened`, `click`, `hardBounce`, `softBounce`, `unsubscribed`, `listAddition`&`delivered` |
9
+
**events** | [**List<EventsEnum>**](#List<EventsEnum>) | - Events triggering the webhook. Possible values for **Transactional** type webhook: ####`sent` OR `request`, `delivered`, `hardBounce`, `softBounce`, `blocked`, `spam`, `invalid`, `deferred`, `click`, `opened`, `uniqueOpened` and `unsubscribed`- Possible values for **Marketing** type webhook: ####`spam`, `opened`, `click`, `hardBounce`, `softBounce`, `unsubscribed`, `listAddition`&`delivered` - Possible values for **Inbound** type webhook: #### `inboundEmailProcessed` |
10
10
**type** | [**TypeEnum**](#TypeEnum) | Type of the webhook | [optional]
11
+
**domain** | **String** | Inbound domain of webhook, required in case of event type `inbound` | [optional]
0 commit comments