Manage Serial numbers information (not stock information)
SerialNumber example GET query, that requests the ItemCode and ExpirationDate properties of all SerialNumbers:
/SerialNumber?$select=ItemCode,ExpirationDate
Response in JSON format:
{
    "value": [
         {
            "ItemCode": "PROSERMBIN",
            "ExpirationDate": "2011-05-03T00:00Z"
        },
        {
            "ItemCode": "PROSERMBIN",
            "ExpirationDate": "2011-05-03T00:00Z"
        },
        {
            "ItemCode": "PROSERMBIN",
            "ExpirationDate": "2011-05-03T00:00Z"
        },
        {
            "ItemCode": "PROSERMBIN",
            "ExpirationDate": "2011-05-03T00:00Z"
        }
    ]
}