Administrator can activate certain Material types (Antibodies, Equipment, etc.) in Signals Notebook configuration.
To fetch all active material libraries:
GET /materials/libraries
To list all (both active and inactive) material libraries available in configuration:
POST /entities/search
{
"query": {
"$match": {
"field": "type",
"value": "assetType",
"mode": "keyword"
}
}
}
For more information, please refer to the following article:
Signals Notebook: How do I access the documentation for API (i.e. Swagger UI)?
and our documentation:
System Configuration Guide > Query Operators in Search APIs > Examples.