getCompanyDetail

getCompanyDetail

This method retrieves detailed information of a specific company by its ID.

Parameters

id (uuid, required): The unique identifier of the company to retrieve details for.

Returns

A JSON object containing the detailed information of the company.

Usage Example

const axios = require('axios');

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

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