Denis Anisimov
Denis Anisimov

Reputation: 865

Quick books online Api. Entity fields for store our firm information

We are using the sdk .net api and want to store service information for few Intuit entities (for example, bill and customer). Information about the identifiers of our offices, etc (json string if possible). Which entity fields we can use for this.

Upvotes: 0

Views: 130

Answers (1)

Keith Palmer Jr.
Keith Palmer Jr.

Reputation: 27962

Intuit documents all available fields on their website - go look at their documentation:

You should store data in whatever field is appropriate. Custom fields are available if you have data that doesn't fit well in any existing field:

All fields are user-facing, so it would not be recommended to store JSON-encoded string blobs within QuickBooks (it will likely be very confusing to whoever is using QuickBooks, and they will be able to change that data to an invalid JSON string). You should probably be keeping that JSON data in your own app, not in QuickBooks.

Upvotes: 1

Related Questions