GET /api/v1/vaults/<vault_id>/import_parsers
Returns summary information on all available parsers in the Vault specified.
GET /api/v1/vaults/<vault_id>/import_parsers
[
{
"id": 22704,
"name": "Protac Registration",
"created_at": "2021-12-23T17:59:22.000-06:00",
"modified_at": "2021-12-23T17:59:22.000-06:00",
"owner": "Charlie Weatherall"
}
]
GET /api/v1/vaults/<vault_id>/import_parsers/327
Using the same API endpoint and specifying a specific parser id will retrieve details on the data objects mapped within a specific parser template.
Example JSON returned may resemble this:
{
"id": 327,
"name": "Primary DR Single Plate",
"template_json": {
"tabNames": [
"AssayOverview",
"CellLines",
"Candidates",
"Doses",
"RawData"
],
"parsingSections": [
{
"type": "plate_block",
"areaRows": {
"h": 16,
"w": 1,
"x": 3,
"y": 6
},
"tabIndex": 1,
"areaBlock": {
"h": 16,
"w": 24,
"x": 4,
"y": 6
},
"fieldName": "CellLines",
"joinField": [
"Well Name"
],
"areaColumns": {
"h": 1,
"w": 24,
"x": 4,
"y": 5
},
"fixedValues": [],
"wellNumberPadding": null
},
{
"type": "plate_block",
"areaRows": {
"h": 16,
"w": 1,
"x": 3,
"y": 6
},
"tabIndex": 2,
"areaBlock": {
"h": 16,
"w": 24,
"x": 4,
"y": 6
},
"fieldName": "Candidates",
"joinField": [
"Well Name"
],
"areaColumns": {
"h": 1,
"w": 24,
"x": 4,
"y": 5
},
"fixedValues": [],
"wellNumberPadding": null
},
{
"type": "plate_block",
"areaRows": {
"h": 16,
"w": 1,
"x": 3,
"y": 6
},
"tabIndex": 3,
"areaBlock": {
"h": 16,
"w": 24,
"x": 4,
"y": 6
},
"fieldName": "Doses",
"joinField": [
"Well Name"
],
"areaColumns": {
"h": 1,
"w": 24,
"x": 4,
"y": 5
},
"fixedValues": [],
"wellNumberPadding": null
},
{
"type": "plate_block",
"areaRows": {
"h": 16,
"w": 1,
"x": 3,
"y": 6
},
"tabIndex": 4,
"areaBlock": {
"h": 16,
"w": 24,
"x": 4,
"y": 6
},
"fieldName": "RawData",
"joinField": [
"Well Name"
],
"areaColumns": {
"h": 1,
"w": 24,
"x": 4,
"y": 5
},
"fixedValues": [],
"wellNumberPadding": null
},
{
"type": "fixed_value",
"tabIndex": 0,
"areaValue": {
"h": 1,
"w": 1,
"x": 2,
"y": 1
},
"fieldName": "Plate"
}
]
},
"created_at": "2024-09-23T14:56:29.023Z",
"modified_at": "2024-09-23T14:56:29.023Z",
"owner": "Charlie Weatherall"
}