-
Notifications
You must be signed in to change notification settings - Fork 21
/
sample-config.json
32 lines (32 loc) · 1.06 KB
/
sample-config.json
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
27
28
29
30
31
32
{
"clientId": "Enter ClientID",
"clientSecret": "Enter ClientSecret",
"redirectUri": "Enter Redirect URI", // ex https://433b4c13.ngrok.io/callback
"configurationEndpoint": "https://developer.api.intuit.com/.well-known/openid_sandbox_configuration/",
"authorization_endpoint":"https://appcenter.intuit.com/connect/oauth2",
"token_endpoint":"https://oauth.platform.intuit.com/oauth2/v1/tokens/bearer",
"api_uri": "https://quickbooks.api.intuit.com/v3/company/",
"scopes": {
"sign_in_with_intuit": [
"openid",
"profile",
"email",
"phone",
"address"
],
"connect_to_quickbooks": [
"com.intuit.quickbooks.accounting"
],
"connect_handler": [
"com.intuit.quickbooks.accounting",
"com.intuit.quickbooks.payment",
"openid",
"profile",
"email",
"phone",
"address"
]
},
"webhookUri": "Enter webhook URI", // ex https://433b4c13.ngrok.io/callback
"webhooksVerifier": "Enter Webhooks Verifier" // Enter the Webhooks Verifier from App Settings
}