Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Current »

Use this method to update an existing Additional Charge from an Invoice in Komet Sales.

Valid Tokens: Company.


Request


URL: https://api.kometsales.com/api/additional.charge.update

Method: POST

Content-Type: application/JSON


Input Parameters

authenticationToken (required)(string:50)

Komet Sales security token.


additionalChargeId (required)(integer:20)

Komet Sales Additional Charge internal ID you want to update.

You can get this value from the additional.charge.list API method.


name (optional)(string:200)

Additional Charge name.


code (optional)(string:10)

Additional Charge code.


active (optional)(boolean:1)

If the customer is active.

Valid values: 1 = Active | 0 = Inactive


{
  "authenticationToken": "token_info_goes_here",
  "additionalChargeId": 234234,
  "name": "Fuel Surcharge",
  "code": "FS"
}

Response


status (integer:1)

Transaction status.

Valid values: 1 = Success | 0 = Failure


message (string:500)

Transaction status description.


additionalChargeId (integer:20)

Komet Sales Internal Additional Charge ID.


{
  "status": "1",
  "message": "The additional charge was successfully saved.",
  "additionalChargeId": 234234
}

  • No labels