Skip to main content

Get Values

GET /v1/integration/:id/file/values

Retrieves parsed values from an uploaded file or integration resource. The endpoint returns all extracted field data along with the configuration used during import, including mapping, format, and filtering options.

Query Parameters

  • filename - Parameter for filename
  • ~filter[all] - Parameter for ~filter[all]
  • ~filter[ids] - Parameter for ~filter[ids]
  • ~csvOptions[fieldDelimiter] - Parameter for ~csvOptions[fieldDelimiter]
  • ~csvOptions[valueDelimiter] - Parameter for ~csvOptions[valueDelimiter]

Request Example

GET /v1/integration/:id/file/values?filename=4_pro.csv

Response Example

{
"values": {
"id": ["1", "2", "3", "4"],
"name": [
"Laptop Pro 15",
"Wireless Mouse X",
"4K Monitor 27",
"Mechanical Keyboard Z"
],
"sku": ["LP15-2025", "WMX-100", "MN27-4K", "KBZ-MECH"],
"description": [
"High performance 15-inch laptop with 16GB RAM and 512GB SSD.",
"Ergonomic wireless mouse with adjustable DPI and silent clicks.",
"27-inch 4K UHD monitor with HDR and ultra-thin bezels.",
"RGB mechanical keyboard with blue switches and aluminum frame."
]
},
"config": {
"name": "-",
"tenant": "tenant-id-1",
"format": "csv",
"fieldMapping": {},
"isGlobal": false,
"importOptions": {
"isSubscription": false,
"isActive": false,
"salesChannels": ["shop"],
"matchingField": "sku"
},
"csvOptions": {
"valueDelimiter": ",",
"fieldDelimiter": ","
},
"filter": {
"all": false,
"ids": []
},
"resource": "products",
"propertyMapping": {}
}
}