API Documentation



Packing Slip Against SO

This API is used to create the Packing Slip Against Sale Order in LOGIC

Authorization Detail

Name Detail
End Point http://demo.logicerp.com/api/PackingSlipAgainstSO
Request Type POST
Authorization Basic Auth
Username Demo
Password 1

Request

                 
{
    "BranchCode": 2,
    "PartyOrderNo": "Test111",
    "PS_Prefix": "APS",
    "GodownName": "MAIN",
    "Box_No_Prefix": "",
    "ListItems": [
        {
            "ItemCode": "PTXL",
            "Quantity": 3.0,
            "ListBoxs": [
                {
                    "PackingBoxNo": "B01",
                    "Quantity": 2.0
                },
                {
                    "PackingBoxNo": "B01",
                    "Quantity": 1.0
                }
            ]
        },
        {
            "ItemCode": "PTXXL",
            "Quantity": 3.0,
            "ListBoxs": [
                {
                    "PackingBoxNo": "B01",
                    "Quantity": 2.0
                },
                {
                    "PackingBoxNo": "B01",
                    "Quantity": 1.0
                }
            ]
        }
    ]
}
  
          

Name Type Length Mandatory
BranchCodenvarchar6yes
PartyOrderNonvarchar50yes
PS_Prefixnvarchar4yes
Box_No_Prefixnvarchar6-
PackingBoxNonvarchar30-

Response

   
  {
      "Status": true,
      "Message":"",
      "LastSavedCode": 177
  }