Update Support Provision
Update an existing support provision.
- Connect to the configuration web service.
- Set the unique identifier of the support provision.
- The item must be checked out and checked back in.
- The user must have write permissions to the item.
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);