Get Integration
GET /v1/integration/:id/config/:configId
Returns a single integration by its unique identifier. This endpoint provides all configuration details of the integration, including mappings, filters, and options currently applied.
Request Body
{
"resource": "products",
"csvOptions": {
"delimiter": ",",
"valueDelimiter": ","
},
"fieldMapping": {
"name": "Varenr",
"sku": "Varenr",
"price": "Pris"
},
"filter": {
"all": false,
"ids": [
0,
1
]
}
}
Response Example
{
"_id": "integration-id-1",
"name": "full-external",
"tenant": "tenant-id-1",
"isGlobal": false,
"resource": "products",
"format": "csv",
"csvOptions": {
"fieldDelimiter": ",",
"valueDelimiter": ","
},
"filter": {
"all": true,
"ids": [
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30
]
},
"fieldMapping": {
"name": "ProductName",
"sku": "SKU",
"price": "Price",
"media": ""
},
"propertyMapping": {
"vendor": [
"Cisco",
"Generic",
"Arista",
"Dell",
"Extreme",
"Huawei",
"Juniper"
],
"form-factor": [
"QSFP to SFP+ adapter",
"QSFP28 to SFP28 adapter"
],
"size": [
"SM"
],
"level": [
"5dB"
]
},
"importOptions": {
"isSubscription": false,
"isActive": true,
"salesChannels": [
"shop"
],
"matchingField": "sku"
},
"created": "2025-10-31T11:46:35.275Z",
"updated": "2025-10-31T11:46:35.275Z",
"__v": 0
}