Skip to content

Yepstr/node-statenspersonadressregister

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-statenspersonadressregister

A library that can be used to query to SPAR (https://www.statenspersonadressregister.se/). SPAR is a service that is provided by the Swedish government for access to data about Swedish citizens. Information on how to gain access to this service can be read on the SPAR website.

Requirements

Make sure you have your certificate from Steria and the account information you need to access the test servers

Usage

Make sure your project depend on node-statenspersonadressregister and then:

import SPAR from 'spar';
const SPAR_OPTIONS = {
  certPath: '', // file path to the certificate from Steria [cert.p12]
  passphrase: '', // The passphrase for the certificate
  kundNr: '', // From SPAR
  orgNr: '', // From SPAR,
  slutAnvandarId: '', // From SPAR,
  baseUrl: '', // url to SPAR
};

const spar = new SPAR(SPAR_OPTIONS);

Personsök

spar.personSok(PERSONNUMMER).then((result) => {
  // result is an array of results, should only be 1 entry
}, (error) => {
  // something went wrong, error has more info
});

More information

https://www.statenspersonadressregister.se/download/18.41febba7149eb27c07a50fb/1447748382337/SPAR_Systemgränssnitt_ver_1-74.pdf

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published