标签: intuit-partner-platform

在 QuickBooks Online 的行对象中添加日记帐分录行详细信息的位置

我一直在尝试向 QBO 发送日志条目 (JE),但我不太了解如何完全创建对象。

所以我有我的整体 JE 对象并在其中设置基本值。然后,在每个 JE 对象中有一个 Line 对象数组,对应于 JE 中的每一行。然后每行都有一个 DetailType,需要将其设置为 JournalEntryLineDetail,然后您应该创建 JournalEntryLineDetail 对象,该对象包含该行的更多信息。但是,你把这个 JournalEntryLineDetail 对象放在 Line 对象的什么位置呢?您是否将它附加到 Line.AnyIntuitObject 对象?

我一直在阅读文档,但似乎没有明确的答案说“这是 JournalEntryLineDetail 所在的位置”,而且我在任何地方都找不到答案。

我目前有一些接近于此的东西:

Dim je As New Intuit.Ipp.Data.JournalEntry()
Dim l As New Intuit.Ipp.Data.Line()
Dim jeld As New Intuit.Ipp.Data.JournalEntryLineDetail()

je.PrivateNote = "Something"
je.TxnDate = Now

l.Description = "Something Squared"
l.Amount = 100000000.00
l.DetailType = Intuit.Ipp.Data.LineDetailTypeEnum.JournalEntryLineDetail

jeld.PostingType = Intuit.Ipp.Data.PostingTypeEnum.Credit
jeld.AccountRef = 80

'Line to put jeld into the line - This is what I don't know how to …
Run Code Online (Sandbox Code Playgroud)

.net quickbooks-online intuit-partner-platform

2
推荐指数
1
解决办法
924
查看次数

如何在Karate Framework中设置代理

我正在尝试使用 IP 端口访问 API。但机器位于 VPN 后面。即使我的本地已连接到 VPN,HTTP 连接也被拒绝。Karate Framework 中是否有设置 VPN/代理的规定?

intuit-partner-platform karate

2
推荐指数
1
解决办法
5754
查看次数

如何分发Karate测试框架?

问题陈述:每个服务都有一个单独的存储库。跨多个服务存储库使用通用框架的最佳方法是什么?

我们正在尝试使用“Karate”创建一个 API 测试自动化框架。在这里,我们想要创建一个框架(可以分布式(示例:jar)),以便它可以在所有微服务项目存储库中使用。

intuit-partner-platform karate

2
推荐指数
1
解决办法
3102
查看次数

Intuit的安全评估从头到尾需要多长时间才能查看QuickBooks Online(QBO)应用程序?

我试图明智地预算我的时间,但是在Intuit在发布之前对应用程序执行的安全审查中没有很多细节.我在他们的博客上发现了一篇关于预备它的文章.

"安全评论":期待什么

然后在他们的网站上有他们的完整安全审查部分.但是,我无法在预期的时间表上找到任何内容.一个人在他们的v3网络研讨会上提到他花了3个月才完成,但这是常态吗?

感谢您的帮助.

intuit quickbooks-online intuit-partner-platform

1
推荐指数
1
解决办法
233
查看次数

Intuit - 未找到OpenID端点

我们在哪里找到要在我们的开发环境/站点中使用的OpenID端点.此代码无效:

//OpenId Relying Party

OpenIdRelyingParty openid = new OpenIdRelyingParty();

var openIdIdentifier = "https://openid.intuit.com/Indentity-AppName";

IAuthenticationRequest request = openid.CreateRequest(openIdIdentifier);
Run Code Online (Sandbox Code Playgroud)

我到了No OpenID endpoint found.在上面的代码片段中,我将替换AppNameDevMaster App Name显示的名称

quickbooks-online intuit-partner-platform

1
推荐指数
1
解决办法
968
查看次数

Intuit connectToIntuit按钮未将控制权传递回父页面

我们已根据以下链接实施了Intuit连接按钮功能:

https://ipp.developer.intuit.com/0010_Intuit_Partner_Platform/0025_Intuit_Anywhere/0020_Connect/0010_From_Within_Your_App/Add_the_Connect_Button

它一直运行到最后但不是将控制权返回到父页面,而是在弹出窗口中打开应用程序.我真的不知道我在这里失踪了什么.以下是此功能的单元测试页面:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ipp="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
<meta http-equiv="Cache-control" content="no-cache"/>
<title>Intuit Test Page</title>
<script src="https://js.appcenter.intuit.com/Content/IA/intuit.ipp.anywhere.js" type="text/javascript">
    </script>
<script type="text/javascript">
    intuit.ipp.anywhere.setup({
      menuProxy: 'myserver.com/intuit/proxy',
      grantUrl: 'myserver.com/intuit/connect'
    });
    </script></head><body>
    <ipp:connectToIntuit></ipp:connectToIntuit>
    </body>
    </html> 
Run Code Online (Sandbox Code Playgroud)

除服务器名称外,代码相同.如果你能提供一些意见,我真的很感激吗?

javascript quickbooks intuit intuit-partner-platform

1
推荐指数
1
解决办法
1073
查看次数

QBXML:我可以获得资产负债表还是必须计算它?

我正在为客户创建一个概述页面,该页面使用 QBXML 通过 PHP 应用程序和 Web 连接器从 Quickbooks 获取发票和销售数据。

客户希望我包含资产负债表(针对请求的日期)。是否可以直接检索,还是我必须获取所有项目和帐户数据并自己计算?

quickbooks qbxml intuit-partner-platform

1
推荐指数
1
解决办法
1015
查看次数

QBO v3 QueryService 是否将响应限制为 100 行?我可以设置更高的限制吗?

我正在使用 QueryService 来检索客户列表。这似乎将返回的行数限制为最大 100 行。

这是我的代码:

QueryService<Intuit.Ipp.Data.Customer> customerQueryService = new QueryService<Intuit.Ipp.Data.Customer>(serviceContext); 
List<Intuit.Ipp.Data.Customer> customers = customerQueryService.Select(c => c).ToList();
Run Code Online (Sandbox Code Playgroud)

如何为返回的最大行数设置更高的限制?

quickbooks-online intuit-partner-platform

1
推荐指数
1
解决办法
583
查看次数

Quickbooks在线API包装器

希望将我的在线购物车连接到我的Quickbooks Online Plus帐户.如果可能的话,我正在寻找某种PHP Wrapper来做这件事.我搜索了互联网,最近没有发现任何东西.所有帖子/问题/答案最多可以追溯到2010年,并且没有一个答案似乎有效.

有谁知道我在哪里可以找到当前文档,php包装器或客户服务号码?

提前致谢.

php api wrapper quickbooks-online intuit-partner-platform

0
推荐指数
1
解决办法
4721
查看次数

QBWC1013:连接到 QuickBooks 时出错。0x80040408

我在获取 QuickBooks Web Connector 时遇到问题。当它运行时,日志显示

...

20130411.15:29:07 UTC   : QBWebConnector.SOAPWebService.do_serverVersion() : *** Calling serverVersion().
20130411.15:29:07 UTC   : QBWebConnector.SOAPWebService.do_serverVersion() : Received from serverVersion() following parameter:<serverVersionRet="testing version">
20130411.15:29:08 UTC   : QBWebConnector.SOAPWebService.do_clientVersion() : *** Calling clientVersion() with following parameter:<productVersion="2.1.0.27">
20130411.15:29:08 UTC   : QBWebConnector.SOAPWebService.do_clientVersion() : Received from clientVersion() following parameter:<clientVersionRet="">
20130411.15:29:08 UTC   : QBWebConnector.SOAPWebService.do_clientVersion() : This application agrees with the current version of QBWebConnector. Allowing update operation.
20130411.15:29:08 UTC   : QBWebConnector.SOAPWebService.do_authenticate() : Authenticating to application 'QBServices Raw Soap', username = 'test'
20130411.15:29:08 UTC   : …
Run Code Online (Sandbox Code Playgroud)

quickbooks qbwc intuit-partner-platform

0
推荐指数
1
解决办法
5133
查看次数

Intuit合作伙伴平台QBD API v2:发票创建/更新似乎无法识别项目金额,价格和数量

我正在尝试从我的应用程序导出发票到QuickBooks桌面.发票已创建,我收到成功消息,但QuickBooks Desktop应用程序不反映通过API发送的金额,价格或数量.

以下是一个此类操作的请求/响应示例:

请求:

<?xml version="1.0"?>
<Mod xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.intuit.com/sb/cdm/v2" RequestId="6ffd7874b723b84ad2eba8146c12fda1">
  <ExternalRealmId>MY_REALM_ID</ExternalRealmId>
  <Object xsi:type="Invoice">
    <Id idDomain="NG">2064384</Id>
    <SyncToken>4</SyncToken>
    <Header>
      <DocNumber>100009</DocNumber>
      <TxnDate>2013-10-16</TxnDate>
      <Status>Pending</Status>
      <CustomerId idDomain="QB">2</CustomerId>
      <CustomerName>Jenny Cliff</CustomerName>
      <RemitToId idDomain="QB">2</RemitToId>
      <RemitToName>Jenny Cliff</RemitToName>
      <ShipDate>2013-10-16</ShipDate>
      <SubTotalAmt>950.0</SubTotalAmt>
      <TaxRate>0.0</TaxRate>
      <TaxAmt>0.0</TaxAmt>
      <TotalAmt>950.0</TotalAmt>
      <ToBePrinted>true</ToBePrinted>
      <ToBeEmailed>false</ToBeEmailed>
      <ARAccountId idDomain="QB">40</ARAccountId>
      <ARAccountName>Accounts Receivable</ARAccountName>
      <DueDate>2013-10-17</DueDate>
      <BillAddr>
        <Line1>217 E Washington Ave,</Line1>
        <City>Sunnyvale</City>
        <Country>USA</Country>
        <CountrySubDivisionCode>CA</CountrySubDivisionCode>
        <PostalCode>94086</PostalCode>
        <Tag>Billing</Tag>
      </BillAddr>
      <ShipAddr>
        <Line1>217 E Washington Ave,</Line1>
        <City>Sunnyvale</City>
        <CountrySubDivisionCode>CA</CountrySubDivisionCode>
        <PostalCode>94086</PostalCode>
        <Default>false</Default>
        <Tag>Shipping</Tag>
      </ShipAddr>
      <Balance>950.0</Balance>
    </Header>
    <Line>
      <Desc>Test Item 1</Desc>
      <Amount>500.0</Amount>
      <UnitPrice>500.0</UnitPrice>
      <Qty>1</Qty>
    </Line>
    <Line>
      <Desc>Test Item 2</Desc>
      <Amount>450.0</Amount>
      <UnitPrice>450.0</UnitPrice>
      <Qty>1</Qty> …
Run Code Online (Sandbox Code Playgroud)

quickbooks intuit-partner-platform

0
推荐指数
1
解决办法
259
查看次数

Quickbooks Desktop 通过 REST API 发送信息

很快我将需要在 Quickbooks Desktop 和 PHP 网站之间进行集成。我知道存在一个有助于集成的 PHP QuickBooks 类,但据我所知,该类仅在 PHP 站点启动与桌面应用程序的联系时才有效。我要求在 QuickBooks 上创建采购订单和/或产品时,它会使用 REST API 自动(即时)将信息发送到我的网站。考虑到将连接多个 QuickBooks Desktop 实例(我们将允许客户使用我们将构建的 QuickBooks 应用程序),因此必须不断检查所有这些 QuickBooks Desktop 实例是否有任何新的采购订单是不切实际的或自我们上次检查以来创建的产品。

有没有办法以某种方式向 QuickBooks 添加代码,以使用 REST API 将采购订单和产品(创建后)发送到我的网站?

谢谢

php api rest quickbooks intuit-partner-platform

0
推荐指数
1
解决办法
1944
查看次数

QuickBooks Web 连接器使用 PHP SOAP 服务器进行身份验证

我只是想了解 QBWC 验证过程。我正在尝试用 PHP 构建一个真正的基本 SOAP 服务器,该服务器仅对 QBWC 请求进行身份验证。

这是我的 WSDL:

<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://developer.intuit.com/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="http://developer.intuit.com/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">WebService for QBFS created using ASP.NET to troubleshoot QuickBooks WebConnector</wsdl:documentation>
<wsdl:types>
    <s:schema elementFormDefault="qualified" targetNamespace="http://developer.intuit.com/">
        <s:element name="serverVersion">
            <s:complexType />
        </s:element>
        <s:element name="serverVersionResponse">
            <s:complexType>
                <s:sequence>
                    <s:element minOccurs="0" maxOccurs="1" name="serverVersionResult" type="s:string" />
                </s:sequence>
            </s:complexType>
        </s:element>
        <s:element name="clientVersion">
            <s:complexType>
                <s:sequence>
                    <s:element minOccurs="0" maxOccurs="1" name="strVersion" type="s:string" />
                </s:sequence>
            </s:complexType>
        </s:element>
        <s:element name="clientVersionResponse">
            <s:complexType>
                <s:sequence>
                    <s:element minOccurs="0" maxOccurs="1" name="clientVersionResult" type="s:string" …
Run Code Online (Sandbox Code Playgroud)

php quickbooks soap web-services intuit-partner-platform

0
推荐指数
1
解决办法
2854
查看次数