Skip to Main Content
Riverty Docs
  • Get Started
  • Login
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
Max length: 255
Customer email address
mobilePhone
string
Max length: 20
Phone number
countryCode
string
Enum:
  • NO
  • SE
  • FI
  • DK
  • DE
  • AT
  • CH
  • NL
  • BE
Country code
postalCode
string
Max length: 15
Postal code
identificationNumber
string
Max length: 20
Social security number / Organization number
customerNumber
string
Max length: 100
Customer number
customerCategory
string
Enum:
  • Company
  • Person
Customer category

Responses

  • 401 Authorization has been denied for this request.
  • 413 Request body too large.
  • 429 Too many requests.
  • 500 Internal server error.
Successful Request

Request Example

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

Response Example

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