Skip to content

Latest commit

 

History

History
103 lines (82 loc) · 3.12 KB

dynamics_salescreditmemo_update.md

File metadata and controls

103 lines (82 loc) · 3.12 KB
title description author ms.topic ms.devlang ms.date ms.author ms.reviewer
Update salesCreditMemos
Updates a sales credit memo object in Dynamics 365 Business Central.
SusanneWindfeldPedersen
reference
al
05/31/2024
solsen
solsen

Update salesCreditMemos

[!INCLUDEapi_v2_note]

Update the properties of a sales credit memo object for [!INCLUDEprod_short].

HTTP request

Replace the URL prefix for [!INCLUDEprod_short] depending on environment following the guideline.

PATCH businesscentralPrefix/companies({id})/salesCreditMemos({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 salesCreditMemos, the salesCreditMemos will not be updated.

Request body

In the request body, supply the values for relevant fields that should be updated. Existing properties that are not included in the request body will maintain their previous values or be recalculated based on changes to other property values. For best performance you shouldn't include existing values that haven't changed.

Response

If successful, this method returns a 200 OK response code and an updated salesCreditMemos object in the response body.

Example

Request

Here is an example of the request.

PATCH https://{businesscentralPrefix}/api/v2.0/companies({id})/salesCreditMemos({id})
Content-type: application/json

{
  "paymentTermsId": "3bb5b4b6-ea4c-43ca-ba1c-3b69e29a6668"
}

Response

Here is an example of the response.

Note

The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.

HTTP/1.1 200 OK
Content-type: application/json

{
  "id": "id-value",
  "number": "1009",
  "creditMemoDate": "2015-12-31",
  "dueDate": "2016-01-31",
  "customerId": "customerId-value",
  "contactId": "",
  "customerNumber": "GL00000008",
  "customerName": "GL00000008",
  "billingPostalAddress": {
    "street": "",
    "city": "",
    "state": "",
    "countryLetterCode": "",
    "postalCode": ""
  },
  "currencyId" : "currencyId-value",
  "currencyCode": "GBP",
  "paymentTermsId": "3bb5b4b6-ea4c-43ca-ba1c-3b69e29a6668",
  "pricesIncludeTax": false,
  "discountAmount": 0,
  "discountAppliedBeforeTax": true,
  "totalAmountExcludingTax": 6825.6,
  "totalTaxAmount": 682.56,
  "totalAmountIncludingTax": 7508.16,
  "status": "Draft",
  "lastModifiedDateTime": "2017-03-17T19:02:22.043Z",
  "invoiceId": "invoiceid-value",
  "invoiceNumber": "100009"
}

See also

Tips for working with the APIs
salescreditmemo
Get salescreditmemo
Delete salescreditmemo
Create salescreditmemo