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

Version 1 Next »

Use this method to delete a prebook. 

Request

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

Method: POST

Content-Type: application/JSON

Input parameters

  • authenticationToken (required)(string:50): Komet Sales security token.

  • prebookId(required) (integer:20):  Komet Sales internal Prebook ID that you want to delete. You can obtain this value from the prebook.list API method.

Sample Request

{
	"authenticationToken": "88ets07ldt0o75pa775jieira8",
	"prebookId": 90356777
}

Response

Output

  • message (String:500): description of the transaction status.

  • status (integer:1): transaction status. 1 for success or 0 for failure.

Sample Response

{
   "message": "The prebook was successfully deleted ",
   "status": 1
}
  • No labels