Credit Kudos Connector API Methods

 

In order to sign in properly, Credit Kudos Connector uses an endpoint to generate the JSON Web Token (JWT). The generated API key needs to be included in all API requests to the server, Base64 encoded within an Authorization header.

For the authentication, you must:

  1. Make a request with the JWT token using the HTTP GET method to Credit Kudos to return an access_token
  2. Use the access_token to make a bearer authentication:
    Copy
    Authorization: Bearer access_token
  3. Generate an UUID or a customReference token that is used to identify customers.
  4. The UUID is sent from the Digital Journey to Apache Camel.
  5. Map the UUID with the stored accessToken by using the getToken method.
    Copy
    GET /connect/token?code={accessToken}
    headers: customReference = {uuid}
  

Navigate to the below pages to see the API returns for each request made using the Credit Kudos Connector.