From 3aaccf82e2e0c101ab1812c29e4814727141f24e Mon Sep 17 00:00:00 2001 From: Steven Date: Thu, 10 Jun 2021 16:19:56 +0200 Subject: [PATCH] Update README.md I've added the realm_id to the description of the config file creation. --- README.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7343437..759be0c 100644 --- a/README.md +++ b/README.md @@ -64,19 +64,22 @@ These values are all obtained from the oauth steps documented on [quickbook's do ``` 1. Create your tap's `config.json` file. The tap config file for this tap should include these entries: - `start_date` - the default value to use if no bookmark exists for an endpoint (rfc3339 date string) - - `user_agent` (string, optional): Process and email for API logging purposes. Example: `tap-quickbooks ` + - `user_agent` (string): Process and email for API logging purposes. Example: `tap-quickbooks ` + - `realm_id` (string): The realm id of the company to fetch the data from. - `sandbox` (string, optional): Whether to communication with quickbooks's sandbox or prod account for this application. If you're not sure leave out. Defaults to false. + And the other values mentioned in [the authentication section above](#authentication). ```json { "client_id": "", - "start_date": "2020-08-21T00:00:00Z", - "refresh_token": "", "client_secret": "", - "sandbox": "", - "user_agent": "Stitch Tap (+support@stitchdata.com)" + "refresh_token": "", + "start_date": "2020-08-21T00:00:00Z", + "user_agent": "Stitch Tap (+support@stitchdata.com)", + "realm_id": "0123456789", + "sandbox": "" } ```