cURL
curl --request GET \ --url https://sandbox.tight.com/v6/company/{id} \ --header 'Authorization: Bearer <token>'
{ "result": "SUCCESS", "data": { "name": "ACME Corp", "owners": [ { "userId": "fake_userId", "email": "joe@tight.com", "firstName": "Joe", "lastName": "Perkins", "language": "EN" } ], "id": "co_235823", "apiCompanyId": "fake_company_123", "entityType": "SOLE_PROPRIETORSHIP", "address": { "countryCode": "USA", "state": "<string>", "city": "<string>", "zip": "<string>", "phoneWork": "<string>", "address1": "<string>", "address2": "<string>" }, "accountingMethod": "ACCRUAL", "businessType": { "id": "bzt_123456", "name": "Electrician" }, "availableFeatures": { "bankTransactions": true, "bills": true, "bookkeeping": true, "imports": true, "invoicing": true, "payroll": true, "reporting": true, "taxes": true, "timeTracking": true, "mileage": true } } }
Get a company in the Tight API for the given id
Bearer authentication header of the form Bearer <token>, where <token> is a partner-level token.
Bearer <token>
<token>
The id of the company
Success
The result of the action performed.
SUCCESS
FAILURE
The data generated by the action performed.
Show child attributes