A Node.js module for connecting to the Acos Innsyn solution from Acos.
This API is based on screenscraping and might break without warning.
Configure the module with an options object containing the endpoint.
Lists all utvalg.
(async () => {
const { getUtvalg } = require('@alheimsins/acos-innsyn')
const options = {
endpoint: 'https://www.baerum.kommune.no/innsyn/politikk'
}
try {
const utvalg = await getUtvalg(options)
console.log(utvalg)
} catch (error) {
console.error(error)
}
})()
Lists all members of a given utvalg.
(async () => {
const { getMedlemmer } = require('@alheimsins/acos-innsyn')
const options = {
endpoint: 'https://www.baerum.kommune.no/innsyn/politikk',
utvalgId: '8'
}
try {
const medlemmer = await getMedlemmer(options)
console.log(medlemmer)
} catch (error) {
console.error(error)
}
})()
Created with ❤ for Alheimsins