pixi Developer & Integration Documentation

pixiTagMatchDeleteForItems

Description

Set Tags for Items.


Request Parameters

#

Name

Type

Required

Example

Description

1

TagsXML

string

1

Sample text

XML for items.


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:pixiTagMatchDeleteForItems>
         <dem:TagsXML>Sample text</dem:TagsXML>
      </dem:pixiTagMatchDeleteForItems>
   </soapenv:Body>
</soapenv:Envelope>


Response


Body 1: Status response

#

Name

Type

Description

1

TagId

integer

Value of TagId from XML

2

ItemId

integer

Value of ItemId from XML

3

ItemNrInt

string

Value of ItemNrInt from XML

4

Status

string

Status (Error/Warning/Success)

5

Message

string

Message (Status detail information)


Additional Notes

Example of XML:
 <Tags>
        <Item>
            <ItemId>12345</ItemId>
            <TagList> 
                <Tag>
                    <TagId>101</TagId>
                </Tag>
            </TagList>
        </Item>
        <Item>
            <ItemNrInt>100001000</ItemNrInt>
            <TagList> 
                <Tag>
                    <TagId>-5</TagId>
                </Tag>
            </TagList>
        </Item>
    </Tags>