Skip to end of banner
Go to start of banner

Handover Notification API

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Outbound | POST  | {Client’s URL}

Summary

This API will call the channel for handover notifications.

Description

This API will call the client system for handover notifications.The API is expected to return success in case of repeated calls.

Request

{
  "locationCode": "wd02",
  "handoverItems": [
    {
      "orderCode": "order123",
      "shipmentCode": "ship123",
      "gatePassCode": "gate124H23"
    },
    {
      "orderCode": "order124",
      "shipmentCode": "ship124",
      "gatePassCode": "gate124H24"
    }
  ]
}

 

Parameter Name

Data Type

Description

Mandatory

locationCode

String

Location code of the warehouse from where the order will be shipped

yes

handoverItems

Object[]

List of handover items

yes

handoverItems.orderCode

String

Unique code used by the channel to identify order

yes

handoverItems.shipmenCode

String

Unique code used by the channel to identify shipment

yes

handoverItems.gatePassCode

String

gatePassCode used while creating the gatePass for this shipment

no

Response

{
    "hasError": false,
    "errorMessage":"message"
}

HttpStatus : 200

  • No labels