Hi i am looking for help with creating a receipt for a transfer order via API.
I created a 2 step transfer as seen in the image. Now i need to create a Receipt for this order using the API.
Â
I have tried to follow this post without any success. https://help-2021r1.acumatica.com/(W(10))/Help?ScreenId=ShowWiki&pageid=24c68cc6-6985-4421-86c9-e29156f3c150
This is a sample of what i have tried.
Endpoint :Â https://<baseurl>/entity/Default/18.200.001/PurchaseReceipt
{
    "Type": {
        "value": "Transfer Receipt"
    },
    "Warehouse": {
        "value": "DP@RAM"
    },
    "Details": "
        {
            "TransferOrderType": {
                "value": "TR"
            },
            "TransferOrderNbr": {
                "value": "INRDP000002"
            },
            "TransferOrderLineNbr": {
                "value": "1"
            },
            "TransferShipmentNbr": {
                "value": "INRDP000002"
            },
            "ReceiptQty": {
                "value": "1"
            },
            "Allocations":Â
                {
                    "Location": {
                        "value": "RAMREC"
                    },
                    "Qty": {
                        "value": 1
                    }
                }
            ]
        }
    ]
}