riverty logo

Docs

Customer LookUp

Returns address based on input (Social security number, mobile number, Organization number). Customer LookUp is only supported in the Nordics. Please see Customer LookUp for more details.

Path

POST /api/v3/lookup/customer

Request Body

application/json

email
string
> 255 Characters
Customer email address
mobilePhone
string
> 20 Characters
Phone number
countryCode
string
Enum:

NO

SE

FI

DK

DE

AT

CH

NL

BE

Country code
postalCode
string
> 15 Characters
Postal code
identificationNumber
string
> 20 Characters
Social security number / Organization number
customerNumber
string
> 100 Characters
Customer number
customerCategory
string
Enum:

Company

Person

Customer category

Responses

Successful Request

Response Example

    
        {
 "userProfiles": [
  {
   "firstName": "Astrid",
   "lastName": "Svensson",
   "mobileNumber": "01234567",
   "eMail": "astrid.svensson@example.com",
   "maskedFirstName": "Ast***",
   "maskedLastName": "Sve*****",
   "maskedMobileNumber": "*****567",
   "maskedEmail": "astri*************@example.com",
   "addressList": [
    {
     "street": "Gütersloher Straße",
     "streetNumber": "123",
     "city": "Berlin",
     "postalCode": "33415",
     "country": "Germany",
     "countryCode": "DE",
     "maskedStreet": "G**** Straß*",
     "maskedPostalCode": "415"
    }
   ]
  }
 ]
}
    

Request Example

    
        {
 "identificationNumber": "12345678900",
 "customerCategory": "Person"
}