anyone have experience transforming transferorder ...
# suitetalkapi
i
anyone have experience transforming transferorder into receipt? we are able to create item receipts successfully agains the TO when their is one item fulfillment, but when there are multiple item fulfillments to be received against the TO only one item receipt gets created (the last item fulfillment) not sure what the proper process is for being able to fully receive the transfer order with multiple item fulfilments. Using REST API and this is what the payload would look like
Copy code
POST: https://{{NS_ACCOUNT_ID}}.suitetalk.api.netsuite.com/services/rest/record/v1/transferorder/48534772/!transform/itemreceipt

{
    "memo": "Received By: IGonzalez",
    "item": {
        "items": [
            {
                "itemreceive": true,
                "orderLine": 12,
                "quantity": 5,
                "binnumbers": "RECVR35"
            }
        ]
    }
}