pixi Developer & Integration Documentation

pixiReadTranslations

Description

API call returns translation line records


Request Parameters

# Name Type Required Example Description
1 TranslationKey integer 0 123 Translation line id. If @RowCount is NULL then it returns only this row, otherwise next @RowCount records.
2 RowCount integer 0 123 Maximum number of records returned

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:pixiReadTranslations>
         <dem:TranslationKey>123</dem:TranslationKey>
         <dem:RowCount>123</dem:RowCount>
      </dem:pixiReadTranslations>
   </soapenv:Body>
</soapenv:Envelope>

Response


Body 1: Translations information

# Name Type Description
1 TranslationKey integer Translation table Id
2 LanguageID integer Language Id (1-English, 2-German)
3 TranslationID string Translation content Id (translation code)
4 TranslationText string Translated text
5 ApplicationName string Application name (grouping of translations per application)
6 DBObjectName string Databse object name (grouping of translations per DB object name)

Additional Notes