getCustomerByProjectAndWalletAddress

getCustomerByProjectAndWalletAddress

This method retrieves detailed information about a customer based on the cmsProjectId and wallet address.

Parameters

  • address (any, required): The wallet address of the customer.
  • cmsProjectId (string, required): The project ID associated with the customer.

Returns

A JSON object containing detailed information about the customer.

Usage Example

const axios = require('axios');

let config = {
  method: 'get',
  maxBodyLength: Infinity,
  url: 'https://api.nexera.id/projects/:cmsProjectId/customer-wallets/:address/customer',
  headers: { 
    'Accept': 'application/json', 
    'Authorization': 'Bearer <TOKEN>'
  }
};

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