v1

latestOpenAPI 3.0.12026-07-26222700728.0 KB
Company Management

Get a company

Get a company in the Tight API for the given id

get/v6/company/{id}

Path parameters

idstring required

The id of the company

Response

Success

result'SUCCESS' | 'FAILURE'

The result of the action performed.

Example response

{
  "data": {
    "id": "co_235823",
    "name": "ACME Corp",
    "apiCompanyId": "fake_company_123",
    "owners": [
      {
        "userId": "fake_userId",
        "email": "joe@tight.com",
        "firstName": "Joe",
        "lastName": "Perkins",
        "language": "EN"
      }
    ],
    "address": {
      "countryCode": "USA"
    },
    "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
    },
    "status": "ACTIVE"
  }
}