pixi Developer & Integration Documentation

pixiCACreateManualBooking

Description

Create a manuel booking event in a Customer Account


Request Parameters

# Name Type Required Example Description
1 CustKey integer 1 123 CustKey
2 EventID string 1 Sample text EventID
3 Amount number 1 19.90 Amount
4 EventDate string 0 YYYY-MM-DD hh:mm:ss EventDate
5 Comment string 0 Sample text Comment
6 MatchToInvoiceNr string 0 Sample text MatchToInvoiceNr
7 MatchKey integer 0 123 MatchKey
8 CurrencyId string 0 string Order CurrencyId (INT): in case when will be NULL, we read base currency to use from Shops table which customer belong to.

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:pixiCACreateManualBooking>
         <dem:CustKey>123</dem:CustKey>
         <dem:EventID>Sample text</dem:EventID>
         <dem:Amount>19.90</dem:Amount>
         <dem:EventDate>YYYY-MM-DD hh:mm:ss</dem:EventDate>
         <dem:Comment>Sample text</dem:Comment>
         <dem:MatchToInvoiceNr>Sample text</dem:MatchToInvoiceNr>
         <dem:MatchKey>123</dem:MatchKey>
         <dem:CurrencyId>string</dem:CurrencyId>
      </dem:pixiCACreateManualBooking>
   </soapenv:Body>
</soapenv:Envelope>

Response


Body 1: Status response

# Name Type Description
0 ReturnCode string OK or ERROR
1 ErrorMessage string Error Message

Additional Notes