http://localhost
API for interacting with configuration for Instances, Items, Holdings
Provides configuration with blocked fields of instance
GET /inventory/config/instances/blocked-fields
Array of blocked fields of instance
Media type: application/json
Type: json
Content:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Blocked fields of instance",
"type": "object",
"properties": {
"blockedFields": {
"description": "Array of blocked fields",
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"blockedFields"
]
}
Example:
{
"blockedFields": [
"hrid",
"source",
"discoverySuppress"
]
}
Internal server error
Media type: text/plain
Type: any
Example:
Internal server error, contact administrator
Provides configuration with blocked fields of holdings
GET /inventory/config/holdings/blocked-fields
Array of blocked fields of holdings
Media type: application/json
Type: json
Content:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Blocked fields of instance",
"type": "object",
"properties": {
"blockedFields": {
"description": "Array of blocked fields",
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"blockedFields"
]
}
Example:
{
"blockedFields": [
"hrid",
"source",
"discoverySuppress"
]
}
Internal server error
Media type: text/plain
Type: any
Example:
Internal server error, contact administrator