get_entity_updates
Retrieve recent changes to Norwegian business entities from the official registry to maintain an updated local copy of company information.
Instructions
Get updates on entities for maintaining a local copy of the registry
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dato | No | Show updates from this timestamp (ISO-8601) | |
| oppdateringsid | No | Show updates from this update ID | |
| organisasjonsnummer | No | Filter by organization numbers | |
| page | No | Page number | |
| size | No | Page size (default 20, max 10000) | |
| sort | No | Sort by ID (ASC/DESC) |
Input Schema (JSON Schema)
{
"properties": {
"dato": {
"description": "Show updates from this timestamp (ISO-8601)",
"type": "string"
},
"oppdateringsid": {
"description": "Show updates from this update ID",
"type": "string"
},
"organisasjonsnummer": {
"description": "Filter by organization numbers",
"items": {
"type": "string"
},
"type": "array"
},
"page": {
"description": "Page number",
"type": "number"
},
"size": {
"description": "Page size (default 20, max 10000)",
"type": "number"
},
"sort": {
"description": "Sort by ID (ASC/DESC)",
"type": "string"
}
},
"type": "object"
}