
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
Table of Contents generated with DocToc
Node module for Public 360 from Tieto
$ npm install p360 --save
SI Integration Framework (SIF) is public 360s SOAP-webservice.
For a full list of calls and callbacks see the documentation here
const p360 = require('p360')
const config = require('./config')
const clientService = 'ContactService'
const clientMethod = 'GetContactPersons'
const args = {
'parameter': {
'Name': 'Geir'
}
}
const options = {
'showRequest': true, // use this to console.log soap-request
'p360': config.p360,
'clientService': clientService,
'clientMethod': clientMethod,
'args': args
}
p360(options, (error, data) => {
if (error) {
console.error(JSON.stringify(error))
} else {
console.log(JSON.stringify(data))
}
})
See example to search for private persons
Result:
{
"GetPrivatePersonsResult": {
"Successful": true,
"PrivatePersons": {
"PrivatePersonBase": [
{
"Email": "hallgeir.hall@t-fk.no",
"FirstName": "Hallgeir",
"LastName": "Hall",
"MobilePhone": "+47 90 00 00 00",
"PersonalIdNumber": "",
"PrivateAddress": {
"Area": "TELEMARK",
"Country": "NOR",
"County": "SELJORD",
"State": "",
"StreetAddress": "Hygdedalen 42",
"ZipCode": "3840",
"ZipPlace": "SELJORD"
}
}
]
}
}
}
See example to search for contact persons
Result:
{
"GetContactPersonsResult": {
"Successful": true,
"ContactPersons": {
"ContactPersonBase": [
{
"Email": "Geir.Gasodden@t-fk.no",
"ExternalId": "",
"FirstName": "Geir",
"LastName": "Gåsodden",
"MobilePhone": "+47 95 55 27 59",
"PrivateAddress": {
"Area": "",
"Country": "NOR",
"County": "",
"State": "",
"StreetAddress": "",
"ZipCode": "",
"ZipPlace": ""
}
},
{
"Email": "geir.grastein@t-fk.no",
"ExternalId": "",
"FirstName": "Geir",
"LastName": "Gråstein",
"MobilePhone": "+47 93 00 00 00",
"PrivateAddress": {
"Area": "",
"Country": "NOR",
"County": "",
"State": "",
"StreetAddress": "",
"ZipCode": "",
"ZipPlace": ""
}
}
]
}
}
}
See example to create contact persons
Result:
{
"SynchronizeContactPersonResult": {
"Successful": true,
"Recno": 209464
}
}
See example to create contact persons
Result:
{
"SynchronizePrivatePersonResult": {
"Successful": true,
"Recno": 209465
}
}
See example to search for cases
Result:
Result:
Result:
Result:
Result:
Result:
This is not an official module from Tieto
FAQs
Communicates with p360 SIF
The npm package p360 receives a total of 3 weekly downloads. As such, p360 popularity was classified as not popular.
We found that p360 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.