Revising a listing to remove a field using ReviseItem is subject to the rules described in Qualifications as well as the ReviseItem reference documentation.

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 ReviseItem reference documentation for information about how to remove specific fields.

The following sample illustrates how to remove the subtitle from a listing.

Sample XML tp Remove the Subtitle

...
<Item>
  <ItemID>4********6</ItemID>
</Item>
<DeletedField>Item.SubTitle</DeletedField>
...