사용자에게 수신된 고유 메시지 아이디
(Notification History API 를 통해서 확인가능)
{"result": true}
Code 예제
var form =newFormData();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);});