FieldEx Developer
developer notes

Transfer Product from Location Bin to Location Bin

The ProductTransferFromLocationBinToLocationBin API facilitates product transfer between location bins. The request body includes bin transfer item information, bin details, and other relevant data.

Method Endpoint
POST {{endpoint}}/api/ext/bin-transfers

Headers

Key Value
Content-Type application/json
Authorization Bearer{{token}}

Example Request

{
    "transferToBin": {
        "id": 2,
        "name": Store Bin B,
        "userId": null
    },
    "transferToType": LOCATION_BIN,
    "referenceNumber": null,
    "note": null,
    "jobOrder": null,
    "binTransferItems": [
        {
            "assetName": {
                "id": 4,
                "name": FCL8,
                "serialNo": FCL8,
                "customer": null,
                "nextMaintenanceDateTime": null,
                "runningNo": AST-000005,
                "assetsCode": FCL8,
                "assetsStatus": null,
                "serviceZone": null,
                "assetsType": {
                    "id": null,
                    "name": Part
                }
            },
            "assets": {
                "id": 46
            },
            "qtyTransfer": 1,
            "product": null,
            "qty": 17,
            "transferFromType": LOCATION_BIN,
            "transferFromBin": {
                "id": 1
            },
            "productSku": null,
            "hasError": 0,
            "duplicateProduct": {
                "id": 5
            },
            "assetsCode": FCL8,
            "serialNumber": FCL8,
            "showAssetsDropDown": false
        }
    ]
}


Example Response

{SOME CODE}