Hi, Is it possible to partially fulfill a Purchase...
# suitetalkapi
v
Hi, Is it possible to partially fulfill a Purchase order via REST API? I'm transforming a PO to an item fulfillment and sending the JSON request Below
Copy code
{
  "item": {
    "items": [
      {
        "orderLine": 1,
        "itemReceive": true,
        "item": {
          "id": "6077"
        },
        "quantity": 1
      }
    ]
  }
}
it creates an item receipt but it also includes the other line items. I want only the the receipt to show the items i have specified on the request.