reScoreWallet

reScoreWallet

This method re-scores a specific wallet associated with a customer.

Parameters

id (string, required): The UUID of the wallet that needs to be re-scored.

Returns

A JSON object confirming the successful re-scoring of the wallet.

Usage Example

const axios = require('axios');

let config = {
  method: 'post',
  maxBodyLength: Infinity,
  url: 'https://api.nexera.id/customers/wallets/rescore/:id',
  headers: { 
    'Accept': 'application/json', 
    'Authorization': 'Bearer <TOKEN>'
  }
};

axios.request(config)
.then((response) => {
  console.log(JSON.stringify(response.data));
})
.catch((error) => {
  console.log(error);
});