Quick Start
curl '{{ url_base}}/api/v1/Company/info \
-X GET \
-H "accept: */*" \
-H "Authorization: Bearer {{ token }}" \
-H "x-company-id: {{ companyId }}" \
-H "Content-Type: application/json"// require the featch module and set it up with your API key
(async () => {
const response = await fetch(
`${url_base}/api/v1/Company/info`,
{
headers: {
"Authorization": `Bearer ${token}`,
"x-company-id": `${companyId}`,
}
});
const body = await response.json();
console.log(body);
})();Last updated