How Can We Help?
< All Topics
Print

Pricing Transaction

The Pricing is used to request pricing information by Part Number for a given list of Manufacturers.

Request JSON Example (Version 1.0)

The following is an example of the JSON string that will be posted requesting Pricing data for a given Group Member.

{
   "pricingrequest": {
      "version": "1.0",
      "transid": "f163bdef-0adb-4973-b5cb-0e94e7af8f72",
      "integrationtype": "FLK",
      "utctime": "2014-07-04 11:00:26",
      "username": "username",
      "password": "password",
      "memberno": "123",
      "mfrcodes": [
         {
            "mfrcode": "ABC"
         },
         {
            "mfrcode": "DEF"
         }
      ]
   }
}

Response JSON Example (Version 1.0)

The following is an example of the JSON string to be returned. The price will be returned for all parts for a given manufacturer.

{
   "pricingresponse": {
      "version": "1.0",
      "transid": "f163bdef-0adb-4973-b5cb-0e94e7af8f72",
      "utctime": "2014-07-04 11:00:27",
      "status": "success",
      "errordescription": "",
      "pricing": [
         {
            "mfrcode": "ABC",
            "partno": "12345",
            "cost": 1.34,
            "core": 10,
            "linecode": "100",
            "partdescription": "Part Discription"
         },
         {
            "mfrcode": "DEF",
            "partno": "22345",
            "cost": 6.98,
            "core": 0,
            "linecode": "100",
            "partdescription": "Part Discription"
         }
      ]
   }
}
Table of Contents