Endpoints to order Consumer Reports. In order to order a Consumer Report, sufficient information to uniquely identify the Consumer (search criteria) must be provided to filter potential results down to one record. When one record has been found, the returned object will be the Consumer Report. Currently only piloting with German Consumers.
https://connect.sandbox.creditsafe.com/v1/
https://connect.creditsafe.com/v1/
This parameter allows users to assign a unique identifier to their API queries. By using a callRef, it facilitates easier tracking and logging within Connect. If you provide a callRef, the Connect team can later retrieve and identify the specific requests associated with that identifier, enabling detailed tracing of interactions.
https://connect.sandbox.creditsafe.com/v1/consumers/searchcriteria
https://connect.creditsafe.com/v1/consumers/searchcriteria
curl -i -X GET \
'https://connect.sandbox.creditsafe.com/v1/consumers/searchcriteria?callRef=string&countries=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
[ { "countries": [ … ], "criteriaSets": [ … ] } ]
Returns the allowed values of the customData parameter.
Used in the GET Company Report and Director Report endpoints
. I.e. Supplying DE
as a country code will return a list of reasons for requesting a DE Credit Report (a legal requirement to supply with each Credit Report request in Germany). This will provide a list of allowedValues to enter into the mandatory Parameter customData
= de_reason_code::allowedValue
.
https://connect.sandbox.creditsafe.com/v1/reportcustomdata/{country}
https://connect.creditsafe.com/v1/reportcustomdata/{country}
curl -i -X GET \
'https://connect.sandbox.creditsafe.com/v1/reportcustomdata/{country}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "customData": [ { … } ], "country": "DE" }
ISO-2 country code
This parameter allows users to assign a unique identifier to their API queries. By using a callRef, it facilitates easier tracking and logging within Connect. If you provide a callRef, the Connect team can later retrieve and identify the specific requests associated with that identifier, enabling detailed tracing of interactions.
https://connect.sandbox.creditsafe.com/v1/consumers
https://connect.creditsafe.com/v1/consumers
curl -i -X GET \
'https://connect.sandbox.creditsafe.com/v1/consumers?city=string&countries=DE&customData=de_reason_code%3A%3AER&dateOfBirth=2019-08-24T14%3A15%3A22Z&firstName=string&houseNo=string&language=EN&lastName=string&postCode=string&street=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "totalSize": 0, "consumers": [ { … } ] }