getCompany

getComapny

This method retrieves the details of a specific company by its ID.

Endpoint

GET https://api.nexera.id/companies/:id

Path Parameters

id (uuid, required): The unique identifier of the company to be retrieved.

Responses

200 OK: Successful response containing company details in JSON format.

Usage Example

const axios = require('axios');

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

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