简体   繁体   English

如何在Intuit Partner Platform中使用QuickBooks处理公司文件

[英]How to work with company file using QuickBooks in Intuit Partner Platform

I am a beginner in QuickBook. 我是QuickBook的初学者。 I have created a .NET application and is able to connect to a QuickBooks Api based app from my application. 我已经创建了一个.NET应用程序,并且能够从我的应用程序连接到基于QuickBooks Api的应用程序。 I have managed to show Blue Dot Menu in my application. 我设法在我的应用程序中显示了“蓝点菜单”。 Now I have a requirement to attach to company file. 现在,我需要附加到公司文件。

1 - I would like what this company file is all about and what does it contain ? 1-我想要这个公司档案的全部内容,它包含什么内容?
2 - How are they created and managed ? 2-如何创建和管理它们?
3 - How can I attach or access these files using .NET application ? 3-如何使用.NET应用程序附加或访问这些文件?

Thanks in advance. 提前致谢。

At first, you can read the common QB terminologies. 首先,您可以阅读常见的QB术语。

https://developer.intuit.com/docs/0025_quickbooksapi/0070_glossary https://developer.intuit.com/docs/0025_quickbooksapi/0070_glossary

Development related docs are available here - 与开发相关的文档可在此处获得-

https://developer.intuit.com/docs/0025_quickbooksapi/0010_getting_started https://developer.intuit.com/docs/0025_quickbooksapi/0010_getting_started

Using ApiExplorer, you can test all endpoint. 使用ApiExplorer,您可以测试所有端点。

Ref - https://developer.intuit.com/docs/0025_quickbooksapi/0010_getting_started/0007_firstrequest 参考-https: //developer.intuit.com/docs/0025_quickbooksapi/0010_getting_started/0007_firstrequest

You can try the sample .net 您可以尝试示例.net

https://github.com/IntuitDeveloperRelations/IPP_Sample_Code/tree/master/QuickbooksAPI/DotNet https://github.com/IntuitDeveloperRelations/IPP_Sample_Code/tree/master/QuickbooksAPI/DotNet

.net devkit - https://developer.intuit.com/docs/0025_quickbooksapi/0055_devkits/0100_ipp_.net_devkit .net devkit- https://developer.intuit.com/docs/0025_quickbooksapi/0055_devkits/0100_ipp_.net_devkit

1 - I would like what this company file is all about and what does it contain ? 1- 我想要这个公司档案的全部内容,它包含什么内容?

Company file contains data. 公司文件包含数据。 Your QBD's data get saved in company file(locally). 您的QBD数据将保存在公司文件中(本地)。 Comapny file's data gets uploaded to cloud when you sync it. 同步时,Comapny文件的数据会上传到云中。 After sync, you get an id(called 'relamId' corresponding to your company file). 同步后,您将获得一个ID(与公司文件相对应的名为“ relamId”)。 While calling API endpoints, you use that relamId as a dataSource. 在调用API端点时,您可以将该relamId用作数据源。

For QBO, all data gets saved in cloud. 对于QBO,所有数据都保存在云中。

2 - How are they created and managed ? 2- 如何创建和管理它们?

End-users(company file owners) manage their company files. 最终用户(公司文件所有者)管理他们的公司文件。

3 - How can I attach or access these files using .NET application ? 3- 如何使用.NET应用程序附加或访问这些文件?

In the sample app's web.config, you need to set consumer key, consumer secret and app tokens. 在示例应用程序的web.config中,您需要设置使用者密钥,使用者密钥和应用程序令牌。 Your app's user will go through the OAuth flow to connect their QB account's data(available in cloud) with your app. 应用程序的用户将通过OAuth流程将其QB帐户的数据(可在云中使用)与您的应用程序连接。 Your app should use that consumer key, consumer secret, apptoken and releamId to get access token and access secret. 您的应用应使用该使用者密钥,使用者密钥,apptoken和releamId来获取访问令牌和访问密钥。 Using these tokens, your app will be able to communicate with end-user's data-file. 使用这些令牌,您的应用程序将能够与最终用户的数据文件进行通信。

Hope these info will be useful. 希望这些信息会有用。

Thanks 谢谢

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用QuickBooks Online(QBO)Intuit合作伙伴平台(IPP)DevKit查询所有未结余额发票 - Query for All Invoices With Open Balances using QuickBooks Online (QBO) Intuit Partner Platform (IPP) DevKit Intuit Quickbooks在线API-如何购买 - Intuit Quickbooks Online API - How to get purchases IntuIt QuickBooks付款API,如何使用IppDotNetSdkForQuickBooksApiV3软件包的servicecontext执行信用卡交易? - IntuIt QuickBooks payments API, How can I perform credit card transactions using servicecontext of IppDotNetSdkForQuickBooksApiV3 package? Intuit Partner Platform-无法添加发票,因为未知物品ID - Intuit Partner Platform - Can't add an invoice because Item ID is unknown QuickBooks Intuit IPP问题检查 - QuickBooks Intuit IPP Issue Check 无法获取当前QuickBooks公司数据文件的名称 - Could not get the name of the current QuickBooks company data file 无法在 Intuit quickbooks api C# 中设置 SalesItemLineDetail 税码 - Not able to set SalesItemLineDetail tax code in Intuit quickbooks api C# 如何使用Partner.wsdl获取Salesforce实体的字段列表 - How to get the list of the fields of a Salesforce entity using Partner.wsdl Intuit QuickBooks集成(C#.NET / SDK)-哪个PhysicalAddress属性用于ZipCode和“状态”字段? - Intuit QuickBooks Integration (C#.NET/SDK) - Which PhysicalAddress property is for ZipCode, and State field? 通过Intuit API访问quickBooks数据时,.NET中出现“ Unauthorized-401”错误 - Getting “Unauthorized-401” Error in .NET while accessing quickBooks data through Intuit API
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM