How Can We Help?
Line Code Parts Listing Transaction
The Line Code Parts Listing Transaction is used to request Part Numbers for a given Line Code from the Member’s system to be used in Brand Mapping.
Request JSON Example (Version 1.0)
The following is an example of the JSON string that will be posted
{
"linecodepartrequest": {
"version": "1.0",
"integrationtype": "FLK",
"utctime": "2014-07-04 11:00:26",
"transid": "5038ab89-d86a-4c32-9206-ec50f7a40a02",
"accountid": "854200",
"memberno": "###",
"username": "",
"password": "",
"linecodes": [
{
"lineCode": "100"
},
{
"lineCode": "101"
}
]
}
}
Response JSON Example (Version 1.0)
The following is an example of the JSON string to be returned
{
"linecodepartresponse": {
"version": "1.0",
"integrationtype": "FLK",
"utctime": "2014-07-04 11:00:26",
"transid": "5038ab89-d86a-4c32-9206-ec50f7a40a02",
"accountid": "854200",
"memberno": "###",
"status": "success",
"errordescription": "",
"linecodes": [
{
"lineCode": "100",
"parts": [
{
"partNo": "123",
"partDescription": "Engine Oil 10w30",
"stocked": true
}
]
},
{
"lineCode": "101",
"parts": [
{
"partNo": "8822",
"partDescription": "Engine Oil Filter",
"stocked": true
}
]
}
]
}
}