Config for intuit
Jobs that use the intuit adaptor may require authentication. A
"credential" for the intuit adaptor will follow the schema below. When
using the CLI, you can set up your own state.configuration by using the
sample below.
Sample Configuration
Paste this into the configuration key of your state.json file and
modify the values to run jobs locally.
{
"access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjlGWERwYmZNRlQyU3ZRdVhoODQ2WVR3RUlCdyIsI",
"baseUrl": "https://sandbox-quickbooks.api.intuit.com"
}
Full Schema
The full configuration schema describes each attribute of the credential and notes those that are required.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"baseUrl": {
"title": "Base URL",
"type": "string",
"description": "The Quickbooks(intuit) base URL",
"format": "uri",
"minLength": 1,
"examples": [
"https://sandbox-quickbooks.api.intuit.com"
]
},
"access_token": {
"title": "Access Token",
"type": "string",
"description": "Your Quickbooks(intuit) access token",
"examples": [
"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjlGWERwYmZNRlQyU3ZRdVhoODQ2WVR3RUlCdyIsI"
]
}
},
"type": "object",
"additionalProperties": true,
"required": [
"access_token",
"baseUrl"
]
}