2017 © Pedro Peláez
 

library decidas-client

Decidas Client

image

inteleon/decidas-client

Decidas Client

  • Tuesday, June 13, 2017
  • by andtyl
  • Repository
  • 18 Watchers
  • 1 Stars
  • 14,603 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 3 Versions
  • 5 % Grown

The README.md

Decidas Client

For making requests to Decidas webservice. This package is currently build only for looking up person data by a personnummer. You need an account for Decidas and a product configured for this (ConfigID)., (*1)

You should read the manual for the webservice to have a basic understanding of how it works., (*2)

Person data by personnummer

Get person data for a swedish personnummer., (*3)

//Create client
$username = ''; //Decidas username
$password = ''; //Decidas password
$connect_timeout = 5000; //Connect timeout in ms
$timeout = 5000; //Timeout in ms
$connect_attempts = 1; //Reconnect attempts if connection is failed
$verify_certificate = true; //Verify the SSL certificate
$cache_wsdl = true; //Cache the WSDL file
$decidas = new \Inteleon\Decidas\Client($username, $password, $connect_timeout, $timeout, $connect_attempts, $verify_certificate, $cache_wsdl);

//Person search
$confignr = ''; //Decidas Config number/id
$personnr = ''; //Personnummer
$person = $decidas->personSearch($personnr, $confignr);

If a person is found $person is an array with the keys: [PersonNr, LastName, FirstName, GivenName, AddressCo, AddressFo, AddressStreet, AddressZip, AddressCity], (*4)

If no person is found $person is false, (*5)

The Versions

13/06 2017

dev-master

9999999-dev

Decidas Client

  Sources   Download

MIT

The Requires

 

The Development Requires

by Andreas Tylegard

06/10 2016

v1.0.1

1.0.1.0

Decidas Client

  Sources   Download

MIT

The Requires

 

The Development Requires

by Andreas Tylegard

03/02 2015

v1.0.0

1.0.0.0

Decidas Client

  Sources   Download

MIT

The Requires

 

by Andreas Tylegard