Create purchaseCreditMemoLines

Creates a purchase credit memo line in Business Central.

HTTP request

Replace the URL prefix for Business Central depending on environment following the guideline.

POST businesscentralPrefix/companies({id})/purchaseCreditMemoLines({id})

Request headers

Header Value
Authorization Bearer {token}. Required.
Content-Type application/json
If-Match Required. When this request header is included and the eTag provided does not match the current tag on the purchaseCreditMemoLine, the purchaseCreditMemoLine will not be updated.

Request body

In the request body, supply a JSON representation of a purchaseCreditMemoLine object.

Response

If successful, this method returns 201 Created response code and a purchaseCreditMemoLine object in the response body.

Example

Request

Here is an example of the request.

POST https://{businesscentralPrefix}/api/v2.0/companies({id})/purchaseCreditMemoLines({id})
Content-type: application/json
{
    "id" : "",
    "documentId" : "",
    "sequence" : "",
    "itemId" : "",
    "accountId" : "",
    "lineType" : "",
    "lineObjectNumber" : "",
    "description" : "",
    "unitOfMeasureId" : "",
    "unitOfMeasureCode" : "",
    "unitCost" : "",
    "quantity" : "",
    "discountAmount" : "",
    "discountPercent" : "",
    "discountAppliedBeforeTax" : "",
    "amountExcludingTax" : "",
    "taxCode" : "",
    "taxPercent" : "",
    "totalTaxAmount" : "",
    "amountIncludingTax" : "",
    "invoiceDiscountAllocation" : "",
    "netAmount" : "",
    "netTaxAmount" : "",
    "netAmountIncludingTax" : "",
    "itemVariantId" : "",
    "locationId" : ""
}

Response

Here is an example of the response.

HTTP/1.1 201 Created
Content-type: application/json
{
    "id" : "",
    "documentId" : "",
    "sequence" : "",
    "itemId" : "",
    "accountId" : "",
    "lineType" : "",
    "lineObjectNumber" : "",
    "description" : "",
    "unitOfMeasureId" : "",
    "unitOfMeasureCode" : "",
    "unitCost" : "",
    "quantity" : "",
    "discountAmount" : "",
    "discountPercent" : "",
    "discountAppliedBeforeTax" : "",
    "amountExcludingTax" : "",
    "taxCode" : "",
    "taxPercent" : "",
    "totalTaxAmount" : "",
    "amountIncludingTax" : "",
    "invoiceDiscountAllocation" : "",
    "netAmount" : "",
    "netTaxAmount" : "",
    "netAmountIncludingTax" : "",
    "itemVariantId" : "",
    "locationId" : ""
}

Tips for working with the APIs
purchaseCreditMemoLine
GET purchaseCreditMemoLine
DELETE purchaseCreditMemoLine
PATCH purchaseCreditMemoLine