Delink Serial Numbers

The Delink Serial Numbers API allows users to delink a list of serial numbers from an existing inventory in order for the system to write appropriate serial number records.

Note: Every serial number that is delinked from the targeted inventory should have corresponding serial Number History records. The Serial Number History UI should display the serial number with delinked action codes for IBLPN, OBLPN, and Active inventories.

You can delink a serial number using the following POST request:

POST .../{version}/entity/inventory/{id}/delink_serial_nbrs/

Additional details for this API include:

Sample Data formatJSON
{
"options" : {
"serial_nbr_list": [
"SN1",
"SN2",
"SN3"
]
}
}

XML

<request>
<options>
<serial_nbr_list>
<list-item>SN1</list-item>
<list-item>SN2</list-item>
<list-item>SN3</list-item>
</serial_nbr_list>
</options>
</request>