TecCom Business Cloud enables Buyers to access and explore article data directly from connected suppliers.
Buyers can use TecCom Portal or integrate via API to automate access to article assortments and product information.

As a Buyer Administrator, you can enable Business Cloud Article Data in your Organization Details.
To activate the service:

After saving, the Article Data menu will be available in TecCom Portal.
In the Article Data menu, Buyers can:
This option is useful for Buyers who want to manually explore or verify data before setting up integrations.

Buyer can refine the research using the Search box. The research is done using the Article Number value (or part of it).
At least 3 characters are required in the Search field. Spaces and special characters are removed for the search.
Buyers can also access article data programmatically through the TecCom Business Cloud Data API.
This enables system integration, automation, or synchronization with ERP systems.
TecCom Business Cloud – Data API Documentation
With this API you can:
Resources:
zz_TXML5 Test Supplier (Test Supplier)Endpoint: POST /suppliers/{SellerTecID}/articles/batch-lookup
Use this endpoint to search articles by any of the next identifiers: 'Erp', 'Ean’, ‘TecDoc', ‘AcesPies' or 'BuyerArticleNumber'.
It's POST request that has the next body structure:
{
"requests": [
{
"correlationId": "some id", //used to link a request to a response
"identifier": "Ean", //one of the identifiers
"brand": "some brand", //brand name
"articleNumber": "some article number" //article number
}
]
"language": "en" //used to return language relative data only (default - 'en')
}
Structure:
"responses": [
{
"correlationId": "some id", //used to link a request to a response
"status": "", //article processing status
"response": "", //article details
"error": "Error" //error details if status = 'Error'
}
]
POST /token in the Postman Collection to generate it.GET /suppliers to list connected supplierszz_TXML5 Test Supplier)GET /suppliers/{SellerTecID}/articles to view the supplier’s assortmentGET /suppliers/{SellerTecID}/articles/{id} to view one specific productPOST /suppliers/{SellerTecID}/articles/batch-lookup to view the supplier’s products{
"id": 19498046,
"articleNumber": "0242235555",
"brand": "TecAlliance",
"buyerArticleNumber": null,
"identifiers": [
{
"qualifier": "Ean",
"articleNumber": "3165143134355",
"brand": null
},
{
"qualifier": "TecDoc",
"articleNumber": "0242235555",
"brand": "7412"
}
],
"availabilities": [
{
"dispatchMode": "Road",
"warehouse": "Ismaning",
"quantity": 30.0,
"uom": "PCE"
}
],
"conditions": {
"currency": "EUR",
"prices": [
{
"type": "Gross",
"netCalculation": null,
"amount": 30.0,
"perQty": 1.0,
"uom": "PCE",
"fromQty": null,
"fromDate": "2025-09-18T00:00:00",
"toDate": "9999-12-31T00:00:00",
"remark": "Oil gross",
"isActive": true
},
{
"type": "Net",
"netCalculation": 0,
"amount": 25.21,
"perQty": 1.0,
"uom": "PCE",
"fromQty": null,
"fromDate": "2025-09-18T00:00:00",
"toDate": "9999-12-31T00:00:00",
"remark": "Oil net",
"isActive": true
}
]
}
}
Each request returns up to 200 articles per page. Use pagination for larger assortments.

Administration TecCom Business Cloud for Buyers
Describes the necessary administration setup for Buyers to use Business Cloud features.
TecCom Business Cloud Export and Subscription API
Describes Buyer APIs for exports, subscriptions and templates.
TecCom Managed Data – Templates
Describes how to create and manage templates for data exports.