V2中的批处理是否受支持?

时间:2013-09-23 14:14:44

标签: batch-processing intuit-partner-platform

直接使用V2支持批处理(不使用SDK)?我在文档中找不到任何关于此的讨论。

1 个答案:

答案 0 :(得分:2)

没有。没有devkit,批处理是不可能的。批处理支持存在于V2中,但它分别发送每个请求。对于Ex - 对于10个对象,将有10个不同的事务(IO)。

https://developer.intuit.com/docs/0025_quickbooksapi/0055_devkits/0100_ipp_.net_devkit/0300_asynchronous_calls/2_batch_process

只是fyi - V3中提供了实际的批量操作支持。 例如,只使用1个事务就可以创建10个对象(或任何其他CRUD操作)。

V3 - https://developer.intuit.com/docs/0025_quickbooksapi/0050_data_services/v3/020_key_concepts/00700_batch_operation

.net devkit - https://developer.intuit.com/docs/0025_quickbooksapi/0055_devkits/0201_ipp_java_devkit_3.0

由于