1. Admin > Company > Setting 에서 회사 기본 설정에서 화물 지연 알람시간을 설정합니다.

Untitled

  1. GET **https://svmp.seavantage.com/api/v1/alarm/cargo 호출**
    1. 호출 시점 기준으로 PTA가 최종 목적지(POD) ETA 보다 지연 된 경우의 데이터를 BL 데이터 전체로 반환합니다.

Untitled

// Sample Response
{
  "mblV2DTO": {
    "documentId": "{SVMP Key}",
    "carrierCode": "{SCAC Code}",
    "bookingNo": "{Booking No.}",
    "mblNo": "{MBL No}",
    "bookingRegno": null,
    "srNo": null,
    "blStatus": "ON",
    "holdYn": "Y",
    "initialEtd": "2022-05-07 09:00",
    "initialEta": "2022-06-20 05:59",
    "locations": [
      {
        "documentId": "{SVMP Key}",
        "partialSeq": 0,
        "locationSeq": 1,
        "locationId": "{SVMP Key}",
        "locationCode": "",
        "locationName": "Gwangyang, Korea, South",
        "locationType": "POL",
        "terminalId": "{SVMP Key}",
        "terminalName": "Kwangyang West Container Terminal",
        "eta": null,
        "ata": "2022-05-06 12:05",
        "etd": "2022-05-06 21:48",
        "atd": "2022-05-07 06:04",
        "pta": null,
        "imoNo": "9778844",
        "shipName": "MARSEILLE MAERSK",
        "voyageNo": "217W",
        "shipData": {
          "shipId": "{SVMP Key}",
          "imoNo": "9778844",
					...
        },
        "portData": {
          "portId": "{SVMP Key}",
          "portName": "Gwangyang",
          "unlocode": "KRKAN",
					...
        }
      },
    ...
    ],
    "hbls": [
      {
        "documentId": "{SVMP Key}",
        "hblNo": "{HBL NO.}",
        "ciNo": "",
        "shipperCode": "{Your Data}",
        "shipperName": "{Your Data}",
        "consigneeCode": "{Your Data}",
        "consigneeName": "{Your Data}",
        "ownerCode": "{Your Data}",
        "ownerName": "{Your Data}",
        "containers": []
      }
    ]
  },
  "diffHour": 26, //{latest eta diff pta}
  "initialDiffHour": -32 // {initial eta diff pta}
}