When relisting an item, most fields can be removed from the listing using the RelistItem call.
The process of removing a field depends upon the type of field that is being removed:
- Boolean field: Set its value to
false
. - String: Use DeletedField.
Refer to the RelistItem reference documentation for information about how to remove specific fields.
The following sample illustrates how to remove the subtitle from a listing.
Sample XML to Remove the Subtitle
... <Item> <ItemID>4********6</ItemID> </Item> <DeletedField>Item.SubTitle</DeletedField> ...