Tecsys
EcosystemSupply chain management platform with OMS and WMS capabilities, used by distributors and retailers in complex fulfillment environments including healthcare, food service, and high-SKU retail. Provides APIs for order orchestration and warehouse integration.
Tecsys is a supply chain software company with a product portfolio covering warehouse management, order management, and transportation management. The company focuses on complex fulfillment environments where standard warehouse software is insufficient: healthcare distribution, food service distribution, and high-SKU retail with complex routing requirements.
The Tecsys OMS handles order orchestration across multiple fulfillment nodes, including distribution centers, third-party warehouses, and supplier drop-ship locations. The routing engine applies configurable rules based on inventory position, delivery commitment, and fulfillment cost. Order exceptions and exceptions routing are handled through a workflow engine rather than manual intervention.
Tecsys integrates with ERP systems (SAP, Oracle, Microsoft Dynamics), e-commerce platforms, and carrier networks. The integration layer uses a combination of REST APIs, EDI, and direct database connectors depending on the integration partner. The platform supports both B2C and B2B fulfillment, with specific capabilities for regulated industries like healthcare that require lot tracking, expiration date management, and compliance labeling.
For agents operating in complex fulfillment environments, Tecsys is relevant where standard 3PL or OMS integrations are insufficient. Healthcare procurement agents, for example, might interact with Tecsys when ordering medical supplies that require lot tracking and compliance documentation alongside the standard fulfillment workflow. The REST API surface covers order submission, status queries, and fulfillment event subscriptions that agents can use to track complex, multi-node fulfillment workflows from initiation through final delivery.
Why This Matters for UCP
Tecsys provides supply chain OMS and WMS capabilities for complex fulfillment environments, offering agents APIs for order routing and status tracking in healthcare, distribution, and high-SKU retail contexts where standard 3PL integrations are insufficient.
UCP Capabilities
UCP Endpoint
Ecosystem — Endpoint not yet publicly available
Integration Example
// Tecsys REST API for supply chain order management.
// Agents submit orders and query fulfillment status in complex distribution environments.
const TECSYS_API = process.env.TECSYS_API_BASE_URL;
const token = process.env.TECSYS_API_TOKEN;
// Query order routing options for an item
const routing = await fetch(TECSYS_API + '/oms/v1/routing/options', {
method: 'POST',
headers: {
Authorization: 'Bearer ' + token,
'Content-Type': 'application/json',
},
body: JSON.stringify({
items: [{ sku: 'MED-001', quantity: 10, uom: 'EA' }],
ship_to_zip: '60601',
required_by_date: '2026-05-01',
}),
}).then(r => r.json());
console.log('Routing options:', routing.options?.length);
console.log('Best option:', routing.options?.[0]?.source_location, routing.options?.[0]?.estimated_ship_date);
// Create an order in the Tecsys OMS
const order = await fetch(TECSYS_API + '/oms/v1/orders', {
method: 'POST',
headers: {
Authorization: 'Bearer ' + token,
'Content-Type': 'application/json',
},
body: JSON.stringify({
external_ref: 'UCP-MED-001',
channel: 'DIGITAL',
priority: 'STANDARD',
ship_to: { zip: '60601', country: 'US' },
lines: [{ sku: 'MED-001', quantity: 10, unit_price: 12.50, uom: 'EA' }],
}),
}).then(r => r.json());
console.log('Order created:', order.order_number, 'Source:', order.fulfillment_source);Category
Fulfillment & OMSUCP Status
EcosystemTags
Pricing
enterprise
Is this your listing? Claim it to get analytics, a verified badge, and priority placement. Claim your listing →
Reviews
★★★★★4.7 (3 reviews)These are illustrative examples to show what reviews will look like. Submit your own experience below.
J. Santos
Senior Engineer · Feb 28, 2026
Integration was straightforward. The UCP endpoint discovery works as documented and checkout completes in under 2 seconds.
M. Lee
Backend Developer · Mar 3, 2026
Works well for our use case. The documentation is accurate and the implementation matches what the spec describes.
R. Kapoor
Platform Engineer · Jan 15, 2026
Integrated in an afternoon. Solid implementation with no unexpected edge cases in production.
9 other tools in Fulfillment & OMS
Is this your tool? Claim this listing
Related Fulfillment & OMS
Whiplash
Fulfillment & OMS
Omnichannel fulfillment and 3PL platform supporting both B2C direct-to-consumer and B2B wholesale shipments from the same inventory pool. Offers a REST API for order management, inventory queries, and carrier selection.