quickbooks-api
Version:
A modular TypeScript SDK for seamless integration with Intuit QuickBooks APIs. Provides robust authentication handling and future-ready foundation for accounting, payments, and commerce operations.
11 lines (10 loc) • 444 B
TypeScript
/**
* The Endpoints for the API
*/
export declare enum Endpoints {
UserAuth = "https://appcenter.intuit.com/connect/oauth2",
TokenBearer = "https://oauth.platform.intuit.com/oauth2/v1/tokens/bearer",
TokenRevoke = "https://developer.api.intuit.com/v2/oauth2/tokens/revoke",
SandboxCompanyApi = "https://sandbox-quickbooks.api.intuit.com/v3/company",
ProductionCompanyApi = "https://quickbooks.api.intuit.com/v3/company"
}