사용자 푸시 알림 설정

Enable User Push Notification

POST https://api.talkplus.io/v1.4/api/users/:userId/push/enable

사용자의 푸시 알림 설정을 활성화합니다.

Path Parameters

NameTypeDescription

userId*

string

Headers

NameTypeDescription

content-type

string

application/json

api-key*

string

App API key

app-id*

string

App ID

{
  "user": {
    "id": "user456",
    "username": "john",
    "profileImageUrl": "http://cnd.test.com/123.jpg",
    "disablePushNotification": false,
    "data": {
      "someMetaKey1": "someMetaValue1",
      "someMetaKey2": "someMetaValue2"
    },
    "updatedAt": 1603244410844,
    "createdAt": 1603244410844
  }
}

Disable User Push Notification

POST https://api.talkplus.io/v1.4/api/users/:userId/push/disable

사용자의 푸시 알림 설정을 비활성화합니다.

Path Parameters

NameTypeDescription

userId*

string

Headers

NameTypeDescription

content-type

string

application/json

api-key*

string

App API key

app-id*

string

App ID

{
  "user": {
    "id": "user456",
    "username": "john",
    "profileImageUrl": "http://cnd.test.com/123.jpg",
    "disablePushNotification": true,
    "data": {
      "someMetaKey1": "someMetaValue1",
      "someMetaKey2": "someMetaValue2"
    },
    "updatedAt": 1603244410844,
    "createdAt": 1603244410844
  }
}

Last updated