pixi Developer & Integration Documentation

pixiCreateOrderComment

Description

With this api call you can add a new order comment. The date and time of the comment is always the current timestamp of the server you are accessing.


Request Parameters

# Name Type Required Example Description
1 OrderNr integer 0 123
2 Comment string 0 Sample text
3 User string 0 Sample text

Request body

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dem="https://api.pixi.eu/soap/demosandbox/">
   <soapenv:Header/>
   <soapenv:Body>
      <dem:pixiCreateOrderComment>
         <dem:OrderNr>123</dem:OrderNr>
         <dem:Comment>Sample text</dem:Comment>
         <dem:User>Sample text</dem:User>
      </dem:pixiCreateOrderComment>
   </soapenv:Body>
</soapenv:Envelope>

Response


Additional Notes