Log InGet demo

Template

Endpoints for retrieving CSV templates for inventory, channels, and carriers.

# Endpoints

  • GET/templates/inventory# Retrieve the CSV template for inventory.
  • GET/templates/channel/{channel_type}# Retrieve the CSV template for a specific channel type (e.g., Shopify, Carrefour).
  • GET/templates/carrier/{carrier_type}# Retrieve the CSV template for a specific carrier type (e.g., CTT, DPD, SEUR, DHL).

Template

template_type

The type of template (e.g., inventory, channel, carrier).

format

The format of the template, which is CSV.

{} The Template resource
1{
2 "template_type": "inventory",
3 "format": "CSV"
4}
get

Get Inventory CSV Template

Retrieve the CSV template for inventory management.

cURL
curl -X GET "https://api.omnilabs.sh/templates/inventory" -H "Authorization: Bearer {{BEARER_TOKEN}}"
Response
"*CSV Headers*"
get

Get Channel CSV Template

Retrieve the CSV template for a specific channel type (e.g., Shopify, Carrefour).

cURL
curl -X GET "https://api.omnilabs.sh/templates/channel/shopify" -H "Authorization: Bearer {{BEARER_TOKEN}}"

Parameters

channel_typestringrequired

The channel type (e.g., shopify, carrefour).

Response
"*CSV Headers*"
get

Get Carrier CSV Template

Retrieve the CSV template for a specific carrier type (e.g., CTT, DPD, SEUR, DHL).

cURL
curl -X GET "https://api.omnilabs.sh/templates/carrier/DPD" -H "Authorization: Bearer {{BEARER_TOKEN}}"

Parameters

carrier_typestringrequired

The carrier type (e.g., CTT, DPD, SEUR, DHL).

Response
"*CSV Headers*"
© Omnilabs 2026. All rights reserved.