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
*TransactionalEmailsApi* | [**getAggregatedSmtpReport**](docs/Api/TransactionalEmailsApi.md#getaggregatedsmtpreport) | **GET** /smtp/statistics/aggregatedReport | Get your transactional email activity aggregated over a period of time
205
205
*TransactionalEmailsApi* | [**getBlockedDomains**](docs/Api/TransactionalEmailsApi.md#getblockeddomains) | **GET** /smtp/blockedDomains | Get the list of blocked domains
206
206
*TransactionalEmailsApi* | [**getEmailEventReport**](docs/Api/TransactionalEmailsApi.md#getemaileventreport) | **GET** /smtp/statistics/events | Get all your transactional email activity (unaggregated events)
*TransactionalEmailsApi* | [**getSmtpReport**](docs/Api/TransactionalEmailsApi.md#getsmtpreport) | **GET** /smtp/statistics/reports | Get your transactional email activity aggregated per day
208
211
*TransactionalEmailsApi* | [**getSmtpTemplate**](docs/Api/TransactionalEmailsApi.md#getsmtptemplate) | **GET** /smtp/templates/{templateId} | Returns the template information
209
212
*TransactionalEmailsApi* | [**getSmtpTemplates**](docs/Api/TransactionalEmailsApi.md#getsmtptemplates) | **GET** /smtp/templates | Get the list of email templates
Copy file name to clipboardExpand all lines: docs/Api/CRMApi.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -649,7 +649,7 @@ Name | Type | Description | Notes
649
649
[[Back to top]](#)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to Model list]](../../README.md#documentation-for-models)[[Back to README]](../../README.md)
**offset** | **int**| Page number of sub-accounts listing |
114
+
**offset** | **int**| Index of the first sub-account in the page |
115
115
**limit** | **int**| Number of sub-accounts to be displayed on each page |
116
116
117
117
### Return type
@@ -190,7 +190,7 @@ void (empty response body)
190
190
191
191
Get sub-account details
192
192
193
-
This endpoint will provide the details of specified sub-account organization
193
+
This endpoint will provide the details for the specified sub-account company
194
194
195
195
### Example
196
196
```php
@@ -305,7 +305,7 @@ void (empty response body)
305
305
[[Back to top]](#)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to Model list]](../../README.md#documentation-for-models)[[Back to README]](../../README.md)
@@ -368,7 +368,7 @@ Name | Type | Description | Notes
368
368
369
369
Generate SSO token to access Sendinblue
370
370
371
-
This endpoint generates an sso token to authenticate and access a sub-account of the master using the account endpoint https://app.sendinblue.com/account/login/sub-account/sso/[token], where [token] will be replaced with actual token.
371
+
This endpoint generates an sso token to authenticate and access a sub-account of the master using the account endpoint https://app.sendinblue.com/account/login/sub-account/sso/[token], where [token] will be replaced by the actual token.
[**getAggregatedSmtpReport**](TransactionalEmailsApi.md#getAggregatedSmtpReport) | **GET** /smtp/statistics/aggregatedReport | Get your transactional email activity aggregated over a period of time
13
13
[**getBlockedDomains**](TransactionalEmailsApi.md#getBlockedDomains) | **GET** /smtp/blockedDomains | Get the list of blocked domains
14
14
[**getEmailEventReport**](TransactionalEmailsApi.md#getEmailEventReport) | **GET** /smtp/statistics/events | Get all your transactional email activity (unaggregated events)
15
+
[**getScheduledEmailByBatchId**](TransactionalEmailsApi.md#getScheduledEmailByBatchId) | **GET** /smtp/emailStatus/{batchId} | Fetch scheduled emails by batchId
16
+
[**getScheduledEmailById**](TransactionalEmailsApi.md#getScheduledEmailById) | **DELETE** /smtp/email/{identifier} | Delete scheduled emails by batchId or messageId
17
+
[**getScheduledEmailByMessageId**](TransactionalEmailsApi.md#getScheduledEmailByMessageId) | **GET** /smtp/emailStatus/{messageId} | Fetch scheduled email by messageId
15
18
[**getSmtpReport**](TransactionalEmailsApi.md#getSmtpReport) | **GET** /smtp/statistics/reports | Get your transactional email activity aggregated per day
16
19
[**getSmtpTemplate**](TransactionalEmailsApi.md#getSmtpTemplate) | **GET** /smtp/templates/{templateId} | Returns the template information
17
20
[**getSmtpTemplates**](TransactionalEmailsApi.md#getSmtpTemplates) | **GET** /smtp/templates | Get the list of email templates
@@ -511,6 +514,198 @@ Name | Type | Description | Notes
511
514
512
515
[[Back to top]](#)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to Model list]](../../README.md#documentation-for-models)[[Back to README]](../../README.md)
$apiInstance = new SendinBlue\Client\Api\TransactionalEmailsApi(
539
+
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
540
+
// This is optional, `GuzzleHttp\Client` will be used as default.
541
+
new GuzzleHttp\Client(),
542
+
$config
543
+
);
544
+
$batchId = "batchId_example"; // string | The batchId of scheduled emails batch (Should be a valid UUIDv4)
545
+
$startDate = new \DateTime("2013-10-20"); // \DateTime | Mandatory if `endDate` is used. Starting date (YYYY-MM-DD) from which you want to fetch the list. Can be maximum 30 days older tha current date.
546
+
$endDate = new \DateTime("2013-10-20"); // \DateTime | Mandatory if `startDate` is used. Ending date (YYYY-MM-DD) till which you want to fetch the list. Maximum time period that can be selected is one month.
547
+
$sort = "desc"; // string | Sort the results in the ascending/descending order of record creation. Default order is **descending** if `sort` is not passed
548
+
$status = "status_example"; // string | Filter the records by `status` of the scheduled email batch or message.
549
+
$limit = 100; // int | Number of documents returned per page
550
+
$offset = 0; // int | Index of the first document on the page
**batchId** | **string**| The batchId of scheduled emails batch (Should be a valid UUIDv4) |
566
+
**startDate** | **\DateTime**| Mandatory if `endDate` is used. Starting date (YYYY-MM-DD) from which you want to fetch the list. Can be maximum 30 days older tha current date. | [optional]
567
+
**endDate** | **\DateTime**| Mandatory if `startDate` is used. Ending date (YYYY-MM-DD) till which you want to fetch the list. Maximum time period that can be selected is one month. | [optional]
568
+
**sort** | **string**| Sort the results in the ascending/descending order of record creation. Default order is **descending** if `sort` is not passed | [optional][default to desc]
569
+
**status** | **string**| Filter the records by `status` of the scheduled email batch or message. | [optional]
570
+
**limit** | **int**| Number of documents returned per page | [optional][default to 100]
571
+
**offset** | **int**| Index of the first document on the page | [optional][default to 0]
[[Back to top]](#)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to Model list]](../../README.md#documentation-for-models)[[Back to README]](../../README.md)
587
+
588
+
# **getScheduledEmailById**
589
+
> getScheduledEmailById($identifier)
590
+
591
+
Delete scheduled emails by batchId or messageId
592
+
593
+
Delete scheduled batch of emails by batchId or single scheduled email by messageId
$apiInstance = new SendinBlue\Client\Api\TransactionalEmailsApi(
610
+
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
611
+
// This is optional, `GuzzleHttp\Client` will be used as default.
612
+
new GuzzleHttp\Client(),
613
+
$config
614
+
);
615
+
$identifier = "identifier_example"; // string | The `batchId` of scheduled emails batch (Should be a valid UUIDv4) or the `messageId` of scheduled email.
616
+
617
+
try {
618
+
$apiInstance->getScheduledEmailById($identifier);
619
+
} catch (Exception $e) {
620
+
echo 'Exception when calling TransactionalEmailsApi->getScheduledEmailById: ', $e->getMessage(), PHP_EOL;
**identifier** | **string**| The `batchId` of scheduled emails batch (Should be a valid UUIDv4) or the `messageId` of scheduled email. |
[[Back to top]](#)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to Model list]](../../README.md#documentation-for-models)[[Back to README]](../../README.md)
$apiInstance = new SendinBlue\Client\Api\TransactionalEmailsApi(
668
+
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
669
+
// This is optional, `GuzzleHttp\Client` will be used as default.
670
+
new GuzzleHttp\Client(),
671
+
$config
672
+
);
673
+
$messageId = "messageId_example"; // string | The messageId of scheduled email
674
+
$startDate = new \DateTime("2013-10-20"); // \DateTime | Mandatory if endDate is used. Starting date (YYYY-MM-DD) from which you want to fetch the list. Can be maximum 30 days older tha current date.
675
+
$endDate = new \DateTime("2013-10-20"); // \DateTime | Mandatory if startDate is used. Ending date (YYYY-MM-DD) till which you want to fetch the list. Maximum time period that can be selected is one month.
**messageId** | **string**| The messageId of scheduled email |
691
+
**startDate** | **\DateTime**| Mandatory if endDate is used. Starting date (YYYY-MM-DD) from which you want to fetch the list. Can be maximum 30 days older tha current date. | [optional]
692
+
**endDate** | **\DateTime**| Mandatory if startDate is used. Ending date (YYYY-MM-DD) till which you want to fetch the list. Maximum time period that can be selected is one month. | [optional]
[[Back to top]](#)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to Model list]](../../README.md#documentation-for-models)[[Back to README]](../../README.md)
**winningVersion** | **string** | Winning Campaign Info. pending = Campaign has been picked for sending and winning version is yet to be decided, tie = A tie happened between both the versions, notAvailable = Campaign has not yet been picked for sending. | [optional]
6
+
**winningVersion** | **string** | Winning Campaign Info. pending = Campaign has been picked for sending and winning version is yet to be decided, tie = A tie happened between both the versions, notAvailable = Campaign has not yet been picked for sending. | [optional]
7
7
**winningCriteria** | **string** | Criteria choosen for winning version (Open/Click) | [optional]
8
8
**winningSubjectLine** | **string** | Subject Line of current winning version | [optional]
9
9
**openRate** | **string** | Open rate for current winning version | [optional]
0 commit comments