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 »

This method allows you set the process to receive the POD (Proof of Delivery) in Komet Sales and associate it to a certain order.

Request

URL: https://api.kometsales.com/api/invoice.pod.receive

Method: POST

Content-Type: Application/JSON

Input Parameters

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

  • invoiceNumber (required)(integer:10): invoice number.

  • proofOfDeliveryfile (required)(bytes): bytes of the file that you want to store.

Sample Request

 {
    "authenticationToken": "token_info_goes_here",
    "invoiceNumber":"114495", 
    "proofOfDeliveryfile":"bytes_of_the_file_goes_here"
   }

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 Response

{
  "status": "1",
  "message": "The proof of delivery was successfully received"
  }
  • No labels