pixi Developer & Integration Documentation

pixiTagUpdate

Description

Update tag name and description by tag id.


Request Parameters

# Name Type Required Example Description
1 TagId integer 1 123 Id of the Tag which will be updated.
2 Name string 1 Sample text New tag name.
3 Description string 0 Sample text (optional) New description of the tag. If description is NULL, then existing tag description is not changed.

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:pixiTagUpdate>
         <dem:TagId>123</dem:TagId>
         <dem:Name>Sample text</dem:Name>
         <dem:Description>Sample text</dem:Description>
      </dem:pixiTagUpdate>
   </soapenv:Body>
</soapenv:Envelope>

Response


Body 1: Return status

# Name Type Description
1 Status string Result of API Call
2 Message string Extended Result of API Call

Additional Notes