GetProductInformation
Description
With this method, we want to receive real time product information from the ERP system. It contains customer-specific product information like pricing and discount information. Also stock information is returned. We will use this method to show real time product information on the product detail page in the web shop.
SOAP API:
Action
http://shoxl.com/ShoxlService/GetProductInformation
Style
Document
Input (Literal)
The input of this method is the document element GetProductInformation having the structure defined by the following table.
Element
Type
Occurs
Description
Sequence
1..1
request
tns:GetProductInformationRequest
0..1
Complex Type: tns: GetProductInformationRequest
Description
The GetProductInformationRequest contains all the information to get the real
time product information like prices and stock from the ERP.
Component
Type
Occurs
Description
Sequence
1..1
AccountNumber
s:string
1..1
This is the (project) account number of the customer.
ProductNumber
s:string
1..1
The product number for the requested product details, this can be a customer-specific product number
Output (Literal)
The output of this method is the document element tns:GetProductInformationResponse having the structure defined by the following table.
Element
Type
Occurs
Description
Sequence
1..1
GetProductInformationResult
tns:GetProductInformationResult
0..1
Complex Type: tns:GetProductInformationResult
Description
The GetProductInformationResult contains prices and stock of the given product
and account number.
Complex Type: tns:ArrayOfQuantityDiscountPrice
Complex Type: tns:QuantityDiscountPrice
The QuantityDiscountPrice contains the information of a quantity range and the connected price per item.
REST API:
URL: /Shoxl​/v1​/GetProductInformation Method: POST
Request body:
GetProductInformationRequest{
}
Example:
Response body:
GetProductInformationResult{
}
QuantityDiscountPrice{
}
Example:
Last updated
Was this helpful?