Skip to main content

Updating the Customer's redit limit

  • January 22, 2021
  • 1 reply
  • 106 views

Forum|alt.badge.img

Hello Team,

Could you please provide an example of the request how to update the Customer’s credit limit?
Or could you provide a link to the API that describes how to update the record at the customer level?

Regards,
Andrew

1 reply

Dmitrii Naumov
Acumatica Moderator
Forum|alt.badge.img+7

Hello Andrew, 

Here is an example of REST API request.

Method: PUT

URL: 

{{sitename}}/entity/Default/20.200.001/Customer

Body: 

{
"CustomerID": { "value": "ABARTENDE" },
"CreditVerificationRules":
{
"CreditLimit": { "value": 30.0000 },
"CreditVerification": { "value": "Credit Limit" }
}
}