푸시알림 읽음처리 API

스윙투앱 푸시알림 읽음처리로 변경하는 API

스윙투앱에서는 수신된 메시지를 읽음처리로 변경하는 API 형태로 제공하고 있습니다.

사전에 협의되지 않은 방식의 API 사용과 , 무분별한 대량발송의 경우 사용에 제한을 받을 수 있습니다.

*해당 API 는 유료앱 사용자에게 제공되는 항목 입니다.

*App Id, App Key 정보는 아래 가이드에서 확인 가능합니다.

  • API 명세서

푸시 알림 목록을 받기위한 API

POST https://www.swing2app.com/swapi/push_confirm_read

*APP ID, API KEY 는 API KEY 관리 페이지에서 확인 가능합니다.

Request Body

NameTypeDescription

app_id*

스윙투앱에서 제공하는 APP_ID

app_api_key*

String

스윙투앱에 발급받은 API KEY

receive_id*

String

사용자에게 수신된 고유 메시지 아이디 (Notification History API 를 통해서 확인가능)

{
    "result": true
}
  • Code 예제

var form = new FormData();
form.append("app_id", "app_id");
form.append("app_api_key", "api_key");
form.append("receive_id", "1234");

var settings = {
  "url": "https://www.swing2app.com/swapi/push_notification_history",
  "method": "POST",
  "timeout": 0,
  "processData": false,
  "mimeType": "multipart/form-data",
  "contentType": false,
  "data": form
};

$.ajax(settings).done(function (response) {
  console.log(response);
});

Last updated