Companies
GET Read Company Details /companies/read
A company reprensents any individual operater that is currently using the Byte Kitchen API. Calling this endpoint will return the details of the company assigned to your integration.
Response
| Name | Value | Description |
|---|---|---|
id | string | Unique Id |
name | string | Name of the company |
Authorization Bearer Token
Token API_Key
Headers
Content-Type application/json
Example
import axios from "axios";
const headers = {
"Authorization": `Bearer ${your_api_key}`,
"Content-Type": "application/json"
};
const rootUrl = "https://us-central1-checklist-admin-d0013.cloudfunctions.net/api/v1";
const request = axios(rootUrl+`/companies/read`, { headers });
Body Response JSON
{
"id": "example-company-guid",
"name": "Bytekitchen"
}