How Can We Help?
Pricing Summary Transaction
The Pricing Summary is used to request Part Counts and Manufacturer Names for a given list of Manufacturer codes. This is used in conjunction with the Priicing Service to give the user some feedback about the amount of data they are going to get in a Pricing Request. This is not required to be implemented in order to use a Pricing Request.
Request JSON Example (Version 1.0)
The following is an example of the JSON string that will be posted requesting Pricing Summary data for a given Group Member.
{
"pricingsummaryrequest": {
"version": "1.0",
"transid": "f163bdef-0adb-4973-b5cb-0e94e7af8f72",
"integrationtype": "FLK",
"utctime": "2015-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.
{
"pricingsummaryresponse": {
"version": "1.0",
"transid": "f163bdef-0adb-4973-b5cb-0e94e7af8f72",
"utctime": "2015-07-04 11:00:27",
"status": "success",
"errordescription": "",
"summary": [
{
"mfrcode": "ABC",
"mfrname": "12345",
"partcount": 327
},
{
"mfrcode": "DEF",
"mfrname": "22345",
"partcount": 1224
}
]
}
}