Credit Monitoring

The Credit Monitoring component is an end-user scoped component which allows them to view details about their credit score and credit history.

Authentication

The Credit Monitoring component requires a JWT with the api:credit-insights:read scope, of the current user.

Parameters

ParameterValueNotes
cidGuidThe external_id property of the consumer you wish to . This id value maps to an ID or identifier that your platform stores for this user.
access_tokenJWT Bearer TokenA token with the scope api:credit-insights:read. You can use this parameter if the platform you are developing on does not allow you to inject the token directly into the web component or web frame.
Component URLURLhttps://component-embedded-sandbox.upwardli.com/credit-insights/

Example

The following is an example of how to load the Credit Monitoring UI Component in a react native application.

1export default function CreditMonitoringScreen({ route }: Props) {
2 const url = "https://component-embedded-sandbox.upwardli.com/credit-insights";
3 return (
4 <SafeAreaView>
5 <View>
6 <JwtAuthWebview url={url} />
7 </View>
8 </SafeAreaView>
9 );
10}