채널 알림 설정

채널 사용자 푸시 알림 설정

GET https://api.talkplus.io/v1.4/api/channels/:channelId/members/:memberId/push/settings

특정 채널 멤버의 푸시 알림 설정을 확인할 수 있습니다.

Path Parameters

NameTypeDescription

channelId*

string

memberId*

string

Headers

NameTypeDescription

content-type

string

application/json

api-key*

string

App API key

app-id*

string

App ID

{
    "pushNotificationSoundAos": "Chime",
    "pushNotificationSoundIos": ""
}

채널 사용자 푸시 알림 설정 변경

POST https://api.talkplus.io/v1.4/api/channels/:channelId/members/:memberId/push/settings

특정 채널 멤버의 푸시 알림 설정을 변경할 수 있습니다

Path Parameters

NameTypeDescription

channelId*

string

memberId*

string

Headers

NameTypeDescription

content-type

string

application/json

api-key*

string

App API key

app-id*

string

App ID

Request Body

NameTypeDescription

pushNotificationSoundAos

string

AOS 푸시 알림 Sound

pushNotificationSoundIos

string

iOS 푸시 알림 Sound

{
    "pushNotificationSoundAos": "",
    "pushNotificationSoundIos": ""
}

Last updated