Suppliers can connect their online catalogues by using the TecCom Portal interface. Articles can be selected in the catalogue and copied to TecCom Portal, if the catalogue is adapted to the interface. The TecAlliance support offers more information regarding this feature.
Parameters can be specified in any order and combination, but when specifying the quantity and unit of measure, the correct order and specification of these values in the URL query string must be observed. For more information, see Adding quantity and unit of measurement.
Regardless of which value you use, the start URL always remains the same:
https://teccom.tecalliance.net/newapp/requestorder/basket?
After the start URL, the parameter, equals sign and the wanted value are specified.
The following parameters can be specified in the URL query string:
Parameter name | Parameter | Link to the example |
---|---|---|
Product ID | p | Example 1, 2, 3, 4, 5, 6 and 7 |
Supplier party ID | s | Example 2 and 7 |
Order ID | o | Example 3, 6, 7 |
Quantity | q | Example 4, 5, 6 and 7 |
Uom | u | Example 4, 5, 6 and 7 |
Product ID (p) | 123 |
URL query string:
https://teccom.tecalliance.net/newapp/requestorder/basket?p=123
The supplier number ID is used to select the relevant supplier.
Product IDs (p) | 123 + 456 |
Supplier party ID (s) | ABC |
URL query string:
https://teccom.tecalliance.net/newapp/requestorder/basket?p=123&p=456&s=ABC
Product IDs (p) | 123 + 456 |
Order ID (o) | Or1245 |
URL query string:
https://teccom.tecalliance.net/newapp/requestorder/basket?p=123&p=456&o=Or1245
To ensure that the two parameters are assigned to the correct article, the parameter products= must be added after the start URL and the article and associated details must be added in the square brackets. Afterwards, further parameters (e.g. order ID) can be entered.
The information in the square brackets must be URL-encoded, but the order of the parameters in these brackets does not matter and the quantity or unit of measure can be removed.
Encoded symbols:
Symbol | URL coded |
---|---|
{ | %7B |
" | %22 |
} | %7D |
The wanted article with the corresponding details is specified in the curly brackets. The parameter is then placed in quotation marks, followed by a colon and the value again in quotation marks. To add another parameter, a comma must be added and then the steps repeated.
As soon as you have finished entering the information, the ]-symbol ends the entry for the article.
Product ID (p) | 123 |
Quantity (q) | 10 |
Unit of measurement (u) | PCE |
Serialized array:
[{"p":"123","q":10,"u":"PCE"}]
Complete URL query string:
https://teccom.tecalliance.net/newapp/requestorder/basket?products=[%7B%22p%22:%22123%22,%22q%22:%2210%22,%22u%22:%22PCE%22%7D]
If several articles are specified, a comma is added after the content of the first curly bracket, another curly bracket is opened and filled in the same way as the first.
Product 1 | Product 2 | |
---|---|---|
Product IDs (p) | 123 | 456 |
Quantity (q) | 10 | 100 |
Unit of measurement (u) | PCE | LTR |
Serialized array:
[{"p":"123","q":10,"u":"PCE"},{"p":"456","q":100,"u":"LTR"}]
Complete URL query string:
https://teccom.tecalliance.net/newapp/requestorder/basket?products=[%7B%22p%22:%22123%22,%22q%22:%2210%22,%22u%22:%22PCE%22%7D,%7B%22p%22:%22456%22,%22q%22:%22100%22,%22u%22:%22LTR%22%7D]
Additional parameters such as order ID can be entered as usual after the square brackets.
Product 1 | Product 2 | |
---|---|---|
Product IDs (p) | 123 | 456 |
Quantity (q) | 10 | 100 |
Unit of measurement (u) | PCE | LTR |
Serialized array:
[{"p":"123","q":10,"u":"PCE"},{"p":"456","q":100,"u":"LTR"}]
Order ID (o) | Or1245 |
Complete URL query string:
https://teccom.tecalliance.net/newapp/requestorder/basket?products=[%7B%22p%22:%22123%22,%22q%22:%2210%22,%22u%22:%22PCE%22%7D,%7B%22p%22:%22456%22,%22q%22:%22100%22,%22u%22:%22LTR%22%7D]&o=Or1245
Product 1 | Product 2 | |
---|---|---|
Product IDs (p) | 123 | 456 |
Quantity (q) | 10 | 100 |
Unit of measurement (u) | PCE | LTR |
Serialized array:
[{"p":"123","q":10,"u":"PCE"},{"p":"456","q":100,"u":"LTR"}]
Order ID (o) | Or1245 |
Supplier party ID (s) | ABC |
Complete URL query string:
https://teccom.tecalliance.net/newapp/requestorder/basket?products=[%7B%22p%22:%22123%22,%22q%22:%2210%22,%22u%22:%22PCE%22%7D,%7B%22p%22:%22456%22,%22q%22:%22100%22,%22u%22:%22LTR%22%7D]&o=Or1245&s=ABC