Skip to main content
GET
/
company-data
/
:companyDataId
Get Company by ID
curl --request GET \
  --url https://www.api.baselink.tech/company-data/:companyDataId \
  --header 'bearer: <api-key>'
{
  "company": {},
  "company.id": "<string>",
  "company.name": "<string>",
  "company.users": [
    {}
  ],
  "company.teams": [
    {}
  ],
  "company.createdAt": "<string>"
}
Retrieve detailed information about a specific company.
company
object
The company object.
company.id
string
The unique identifier of the company.
company.name
string
The name of the company.
company.users
array
Array of users in the company.
company.teams
array
Array of teams in the company.
company.createdAt
string
The creation timestamp of the company.