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 4 Next »

Use this method to add a new Additional Invoice (or Purchase Order?) Charge to your Company. You can also see these Additional Charges in the /wiki/spaces/DOC/pages/3312385.

Valid Tokens: Company.

Related Articles

Request


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

Method: POST

Content-Type: application/json


Input Parameters

authenticationToken (required)(string:50)

Komet Sales security token.


name (required)(string:200):

Name of the Additional Charge.


code (optional)(string:10)

Additional Charge code.


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

Response


status (integer:1)

Transaction status. 1 = Success | 0 = Failure


message (string:500)

Transaction status description.


additionalChargeId (integer:20)

New Additional Charge internal ID.

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


  • No labels