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

Overview

This method allows you to delete an item from an existing Prebook on Komet Sales. 

Request

https://api.kometsales.com/api/prebook.item.delete

  • Method: POST
  • Content-Type: application/json

Input Parameters:

  • authenticationToken (required)(string:20): Komet Sales security token.
  • prebookId (required)(integer:20): the Komet Sales internal prebook ID that you want to update. You can obtain this value from the prebook.create API method.
  • prebookItemId (required)(number:20): ID of the Komet Sales prebook item that you want to delete. This value can be obtained from the prebook.create API method.

 

Sample 1
{
  "authenticationToken": "token_info_goes_here",
  "prebookId": 85063,
  "prebookItemId": 9999999
}

 

Response

Output:

  • status (integer:1): transaction status. 1 for success or 0 for failure.
  • message (string:500): description of the status of the transaction.

Sample 1
{
  "status": "1",
  "message": "success"
 }

 

 

  • No labels