Inserts multiple records to the specified Lookup Table.
The /loaddata
operation is a very efficient and quick way to insert bulk data. The main advantage is its greater speed when loading thousands of records (compared to e.g. /integrate
).
We used /lookuptablemanager.loaddata/MLTV
in the request example to insert bulk data to Matrix Lookup Table. Notice that the lookupTable
is used in the header
section and then ID of the Lookup Table in the data
section
{- "data": {
- "header": [
- "attribute1",
- "lookupTable"
], - "data": [
- [
- "att1-1",
- "2147484051"
], - [
- "att1-2",
- "2147484051"
], - [
- "att1-3",
- "2147484051"
]
]
}
}
{- "response": {
- "node": "string",
- "csrfToken": "string",
- "data": [
- { }
], - "status": 0
}
}