Description
Create Manual Credit out of Invoice data.
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
InvoiceKey |
integer |
0 |
2 |
Id from dbo.Invoices |
| 2 |
InvoiceNr |
string |
0 |
INV00001 |
InvoiceNr from dbo.Invoices |
| 3 |
PositionText |
string |
0 |
Free text describing operation |
Details for Credit |
| 4 |
LanguageId |
string |
0 |
2 |
Language: 1 = Eng, 2= Ger (default) |
| 5 |
VATRate |
string |
0 |
H |
VatRate: H = High, L = Low, N = None |
| 6 |
Amount |
number |
0 |
23.45 |
Credit Amount - Netto or Bruto - depends on Invoice/Order type |
| 7 |
UserName |
string |
0 |
UserName |
User - default: API Manual Credit |
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:pixiManualCreditCreate>
<dem:InvoiceKey>2</dem:InvoiceKey>
<dem:InvoiceNr>INV00001</dem:InvoiceNr>
<dem:PositionText>Free text describing operation</dem:PositionText>
<dem:LanguageId>2</dem:LanguageId>
<dem:VATRate>H</dem:VATRate>
<dem:Amount>23.45</dem:Amount>
<dem:UserName>UserName</dem:UserName>
</dem:pixiManualCreditCreate>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Error response
| # |
Name |
Type |
Description |
| 1 |
Status |
string |
Status of the responce |
| 2 |
Message |
string |
Description of the error response |
Additional Notes