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
Copy file name to clipboardExpand all lines: api.ts
+20-31Lines changed: 20 additions & 31 deletions
Original file line number
Diff line number
Diff line change
@@ -1588,17 +1588,13 @@ export class CreateWebhook {
1588
1588
*/
1589
1589
'description'?: string;
1590
1590
/**
1591
-
* - 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: #### `inbound_email_processed`
1591
+
* - 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`
1592
1592
*/
1593
1593
'events': Array<CreateWebhook.EventsEnum>;
1594
1594
/**
1595
1595
* Type of the webhook
1596
1596
*/
1597
1597
'type'?: CreateWebhook.TypeEnum;
1598
-
/**
1599
-
* Inbound domain of webhook, required in case of event type `inbound`
protected defaultHeaders : any = { 'user-agent': 'sendinblue_clientAPI/v2.2.3-beta.1/ts-node' };
9115
+
protected defaultHeaders : any = { 'user-agent': 'sendinblue_clientAPI/v2.2.3/ts-node' };
9127
9116
protected _useQuerystring = false;
9128
9117
9129
9118
protected authentications = {
@@ -9829,7 +9818,7 @@ export class ContactsApi {
9829
9818
});
9830
9819
}
9831
9820
/**
9832
-
*
9821
+
* 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.
9833
9822
* @summary Get a contact's details
9834
9823
* @param identifier Email (urlencoded) OR ID of the contact OR its SMS attribute value
* @summary Get email campaigns' statistics for a contact
9893
9882
* @param identifier Email (urlencoded) OR ID of the contact
9894
9883
* @param startDate Mandatory if endDate is used. Starting date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be lower than equal to endDate
9895
-
* @param endDate Mandatory if startDate is used. Ending date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be greater than equal to startDate
9884
+
* @param endDate 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
protected defaultHeaders : any = { 'user-agent': 'sendinblue_clientAPI/v2.2.3-beta.1/ts-node' };
15152
+
protected defaultHeaders : any = { 'user-agent': 'sendinblue_clientAPI/v2.2.3/ts-node' };
15164
15153
protected _useQuerystring = false;
15165
15154
15166
15155
protected authentications = {
@@ -15488,7 +15477,7 @@ export class TransactionalEmailsApi {
15488
15477
});
15489
15478
}
15490
15479
/**
15491
-
*
15480
+
* This endpoint will show the aggregated stats for past 90 days by default if `startDate` and `endDate` OR `days` is not passed. The date range can not exceed 90 days
15492
15481
* @summary Get your transactional email activity aggregated over a period of time
15493
15482
* @param startDate Mandatory if endDate is used. Starting date of the report (YYYY-MM-DD). Must be lower than equal to endDate
15494
15483
* @param endDate Mandatory if startDate is used. Ending date of the report (YYYY-MM-DD). Must be greater than equal to startDate
@@ -15612,7 +15601,7 @@ export class TransactionalEmailsApi {
15612
15601
});
15613
15602
}
15614
15603
/**
15615
-
*
15604
+
* This endpoint will show the aggregated stats for past 30 days by default if `startDate` and `endDate` OR `days` is not passed. The date range can not exceed 90 days
15616
15605
* @summary Get all your transactional email activity (unaggregated events)
15617
15606
* @param limit Number limitation for the result returned
15618
15607
* @param offset Beginning point in the list to retrieve from.
0 commit comments