Skip to content

Discover Customer by SSN

Request

This method let's you retreive information on a member based on their SSN

Security
api_key
Path
ssnstringrequired

SSN number to lookup

curl -i -X GET \
  'https://api.oculos.no/v4/data-enrichment/ssn/{ssn}' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

OK

Bodyapplication/json
firstNamestring
Example:"firstName"
lastNamestring
Example:"lastName"
addressstring
Example:"Kongens gate 20"
zipstring
Example:"0010"
citystring
Example:"Oslo"
genderstring
Example:"Male"
birthDatestring
Example:"1955-12-16T00:00:00"
extendedPropertiesobject
Response
{ "firstName": "firstName", "lastName": "lastName", "address": "Kongens gate 20", "zip": "0010", "city": "Oslo", "gender": "Male", "birthDate": "1955-12-16T00:00:00", "extendedProperties": { "additionalProp1": "string", "additionalProp2": "string", "additionalProp3": "string" } }