1

I'm trying to apply credit memo to invoice using Suitetalk but there is no available field for "apply" in suitetalk api browser.

Below is the link of Netsuite's REST API browser that I am using https://system.netsuite.com/help/helpcenter/en_US/APIs/REST_API_Browser/record/v1/2023.1/index.html

I tried using POST/PATCH request with creditMemo object for payload

  • I facing the same issue, I've contacted some vendors, and it seems the feature is not ready yet to apply CM using API – anjarwidi83 Jul 22 '23 at 04:58

1 Answers1

0

To apply an creditMemo to an invoice transaction in NetSuite using the REST API, the request url can be formatted like:

POST .../services/rest/record/v1/invoice/{invoiceId}/!transform/creditMemo

From what I can tell, this creates a credit memo from the invoice, but also associates the original invoice with it.

abogaard
  • 339
  • 3
  • 8