- Mark as New
- Bookmark
- Subscribe
- Permalink
- Email to a Friend
- Report Inappropriate Content
Question:
When trying to add features to products in our product catalog using create() with ProductFeature” object in SOAP API, the method returns the following error: “The type "ProductFeature" not support batch create.”
If you found my answer helpful, please give me a kudo ↑
Help others find answers faster by accepting my post as a solution √
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Email to a Friend
- Report Inappropriate Content
Response:
The problem was with the "useSingleTransaction = true” parameter.
<h:CallOptions xmlns="http://api.zuora.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:h="http://api.zuora.com/">
<useSingleTransaction>true</useSingleTransaction>
</h:CallOptions>
The useSingleTransaction needs to be set to False. The CallOptions complex type is used when using the create() call with an amendment--atomic amendment.
If you found my answer helpful, please give me a kudo ↑
Help others find answers faster by accepting my post as a solution √
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Email to a Friend
- Report Inappropriate Content
Response:
The problem was with the "useSingleTransaction = true” parameter.
<h:CallOptions xmlns="http://api.zuora.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:h="http://api.zuora.com/">
<useSingleTransaction>true</useSingleTransaction>
</h:CallOptions>
The useSingleTransaction needs to be set to False. The CallOptions complex type is used when using the create() call with an amendment--atomic amendment.
If you found my answer helpful, please give me a kudo ↑
Help others find answers faster by accepting my post as a solution √