-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
26 lines (26 loc) · 894 Bytes
/
appsettings.json
File metadata and controls
26 lines (26 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"QuickBooks": {
"ClientId": "YOUR_CLIENT_ID",
"ClientSecret": "YOUR_CLIENT_SECRET",
"RedirectUri": "https://your-redirect-uri.com/api/oauth/callback",
"DiscoveryDocument": "https://appcenter.intuit.com/api/v1/connection/oauth2",
"BaseUrl": "https://sandbox-quickbooks.api.intuit.com",
"GraphQLEndpoint": "https://public.api.intuit.com/2020-04/graphql",
"ProductionBaseUrl": "https://quickbooks.api.intuit.com",
"ProductionGraphQLEndpoint": "https://qb.api.intuit.com/graphql",
"Environment": "production",
"MinorVersion": 75,
"CustomFieldScopes": [
"app-foundations.custom-field-definitions.read",
"app-foundations.custom-field-definitions",
"com.intuit.quickbooks.accounting"
]
}
}