Packing Slip against SO

Packing Slip Against SO :- LOGIC API PUSH - 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": "PSTEST",
    "PS_Prefix": "PS",
    "GodownName": "MAIN",
    "Remarks": "RKS-1121",
    "Box_No_Prefix": "1",
    "ListItems": [
        {
            "ItemCode": "8900001",
            "Quantity": 47.0,
            "ListBoxs": [
                {
                    "BinCode": 0,
                    "BinName": null,
                    "PackingBoxNo": "B01",
                    "Quantity": 20.0
                },
                {
                    "BinCode": 0,
                    "BinName": null,
                    "PackingBoxNo": "B011",
                    "Quantity": 27.0
                }
            ]
        }
    ]
}
  
Name
Type
Length
Mandatory

BranchCode

nvarchar

6

yes

PartyOrderNo

nvarchar

50

yes

PS_Prefix

nvarchar

4

yes

Remarks

nvarchar

6

-

Box_No_Prefix

nvarchar

6

-

PackingBoxNo

nvarchar

30

-

BinCode

num

-

-

BinName

nvarchar

30

-

Quantity

num

-

-

Response

 
{
    "LastSavedDocNo": "PS-3",
    "LastSavedCode": 2475,
    "Status": true,
    "Message":"Success"
}
  

Last updated