├── .gitignore ├── Authentication ├── HTTP Basic.md └── OAuth 2.0.md ├── README.md └── Sections ├── Accounts.md ├── Client Contacts.md ├── Clients.md ├── Estimates.md ├── Expense Categories.md ├── Expense Tracking.md ├── Invoice Categories.md ├── Invoice Messages.md ├── Invoice Payments.md ├── Invoices.md ├── People.md ├── Projects.md ├── Task Assignment.md ├── Tasks.md ├── Time Tracking.md ├── Time and Expense Reporting.md └── User Assignment.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Authentication/HTTP Basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Authentication/HTTP Basic.md -------------------------------------------------------------------------------- /Authentication/OAuth 2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Authentication/OAuth 2.0.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/README.md -------------------------------------------------------------------------------- /Sections/Accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/Accounts.md -------------------------------------------------------------------------------- /Sections/Client Contacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/Client Contacts.md -------------------------------------------------------------------------------- /Sections/Clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/Clients.md -------------------------------------------------------------------------------- /Sections/Estimates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/Estimates.md -------------------------------------------------------------------------------- /Sections/Expense Categories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/Expense Categories.md -------------------------------------------------------------------------------- /Sections/Expense Tracking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/Expense Tracking.md -------------------------------------------------------------------------------- /Sections/Invoice Categories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/Invoice Categories.md -------------------------------------------------------------------------------- /Sections/Invoice Messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/Invoice Messages.md -------------------------------------------------------------------------------- /Sections/Invoice Payments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/Invoice Payments.md -------------------------------------------------------------------------------- /Sections/Invoices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/Invoices.md -------------------------------------------------------------------------------- /Sections/People.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/People.md -------------------------------------------------------------------------------- /Sections/Projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/Projects.md -------------------------------------------------------------------------------- /Sections/Task Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/Task Assignment.md -------------------------------------------------------------------------------- /Sections/Tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/Tasks.md -------------------------------------------------------------------------------- /Sections/Time Tracking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/Time Tracking.md -------------------------------------------------------------------------------- /Sections/Time and Expense Reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/Time and Expense Reporting.md -------------------------------------------------------------------------------- /Sections/User Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvesthq/api/HEAD/Sections/User Assignment.md --------------------------------------------------------------------------------