Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
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 |
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's an example of the request.
POST https://{businesscentralPrefix}/api/v2.0/companies({id})/purchaseCreditMemoLines({id})
Content-type: application/json
{
"documentId": "5d863f66-7de2-4d80-95a6-c2ec47e7b8b2",
"lineType": "Item",
"lineObjectNumber": "1896-S",
"description": "Athens Desk",
"unitOfMeasureCode": "PCS",
"unitCost": 250.00,
"quantity": 2,
"discountPercent": 5,
"discountAppliedBeforeTax": true
}
Response
Here's an example of the response.
HTTP/1.1 201 Created
Content-type: application/json
{
"id": "c2810c4d-678e-45d1-b140-f84c2a20f420",
"documentId": "5d863f66-7de2-4d80-95a6-c2ec47e7b8b2",
"sequence": 10000,
"itemId": "8b26f7d5-0178-4d8c-9a62-f5136b2e0f47",
"accountId": "",
"lineType": "Item",
"lineObjectNumber": "1896-S",
"description": "Athens Desk",
"unitOfMeasureId": "58ca7f64-a5c0-42e0-b5b2-a17c7a59cd6c",
"unitOfMeasureCode": "PCS",
"unitCost": 250.00,
"quantity": 2,
"discountAmount": 25.00,
"discountPercent": 5,
"discountAppliedBeforeTax": true,
"amountExcludingTax": 475.00,
"taxCode": "VAT10",
"taxPercent": 10,
"totalTaxAmount": 47.50,
"amountIncludingTax": 522.50,
"invoiceDiscountAllocation": 0.00,
"netAmount": 475.00,
"netTaxAmount": 47.50,
"netAmountIncludingTax": 522.50,
"itemVariantId": "",
"locationId": "14f6f3a9-3528-47a1-b13e-46d43f5c6239"
}
Related information
Tips for working with the APIs
purchaseCreditMemoLine
GET purchaseCreditMemoLine
DELETE purchaseCreditMemoLine
PATCH purchaseCreditMemoLine