Update an existing support provision.



Code Sample


# Get the existing item.

$item = $xia.GET_Item(1234, 0);


# Check out the item.

$xia.DO_CheckOutItem($item.ItemID);


# Update the properties.

$item.Hours = "Monday to Friday, 8am to 5pm";


# Update the item.

$xia.SET_Item($item);


# Check in the item back in.

$xia.DO_CheckInItem($item.ItemID);