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
[**addHmsPushConfiguration()**](ApplicationApi.md#addHmsPushConfiguration) | **POST** /v3/applications/push/hms | Add an HMS push configuration
10
10
[**addIpToWhitelist()**](ApplicationApi.md#addIpToWhitelist) | **PUT** /v3/applications/settings/ip_whitelist | Add an IP to a whitelist
11
11
[**banUsersInChannelsWithCustomChannelType()**](ApplicationApi.md#banUsersInChannelsWithCustomChannelType) | **POST** /v3/applications/settings_by_channel_custom_type/{custom_type}/ban | Ban users in channels with a custom channel type
12
+
[**configureAutoEventMessages()**](ApplicationApi.md#configureAutoEventMessages) | **PUT** /v3/applications/settings/auto_event_message | Configure auto event message settings
12
13
[**deleteAllowedIpsFromWhitelist()**](ApplicationApi.md#deleteAllowedIpsFromWhitelist) | **DELETE** /v3/applications/settings/ip_whitelist | Delete allowed IPs from a whitelist
13
14
[**deleteApnsCertificateById()**](ApplicationApi.md#deleteApnsCertificateById) | **DELETE** /v3/applications/push/apns/cert/{provider_id} | Delete an APNs certificate
14
15
[**generateSecondaryApiToken()**](ApplicationApi.md#generateSecondaryApiToken) | **POST** /v3/applications/api_tokens | Generate a secondary API token
16
+
[**listAutoEventMessages()**](ApplicationApi.md#listAutoEventMessages) | **GET** /v3/applications/settings/auto_event_message | List auto event messages
15
17
[**listBannedUsersInChannelsWithCustomChannelType()**](ApplicationApi.md#listBannedUsersInChannelsWithCustomChannelType) | **GET** /v3/applications/settings_by_channel_custom_type/{custom_type}/ban | List banned users in channels with a custom channel type
16
18
[**listMutedUsersInChannelsWithCustomChannelType()**](ApplicationApi.md#listMutedUsersInChannelsWithCustomChannelType) | **GET** /v3/applications/settings_by_channel_custom_type/{custom_type}/mute | List muted users in channels with a custom channel type
17
19
[**listPushConfigurations()**](ApplicationApi.md#listPushConfigurations) | **GET** /v3/applications/push/{push_type} | List push configurations
## Configure auto event message settings Determines whether to automatically send event messages to group channels when events take place in an application. You can choose which auto event message to receive on the Sendbird Dashboard https://sendbird.com/docs/chat/v3/platform-api/application/managing-auto-event-messages/configure-auto-event-message-settings ----------------------------
341
+
342
+
### Example
343
+
344
+
```php
345
+
<?php
346
+
require_once(__DIR__ . '/vendor/autoload.php');
347
+
348
+
349
+
350
+
$apiInstance = new Sendbird\Api\ApplicationApi(
351
+
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
352
+
// This is optional, `GuzzleHttp\Client` will be used as default.
353
+
new GuzzleHttp\Client()
354
+
);
355
+
$api_token = {{API_TOKEN}}; // string
356
+
$configure_auto_event_data = new \Sendbird\Model\ConfigureAutoEventData(); // \Sendbird\Model\ConfigureAutoEventData
## List auto event messages Retrieves a list of auto event messages that are sent in a specified application and indicates which ones are in use. Auto event messages are Admin messages that are automatically generated when a specific event occurs. https://sendbird.com/docs/chat/v3/platform-api/application/managing-auto-event-messages/list-auto-event-messages ----------------------------
573
+
574
+
### Example
575
+
576
+
```php
577
+
<?php
578
+
require_once(__DIR__ . '/vendor/autoload.php');
579
+
580
+
581
+
582
+
$apiInstance = new Sendbird\Api\ApplicationApi(
583
+
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
584
+
// This is optional, `GuzzleHttp\Client` will be used as default.
0 commit comments