DMS.sys Posted March 17, 2021 Report Share Posted March 17, 2021 Hallo, ich entwickle im Kundenauftrag eine Schnittstelle zur ERP-Lösung. Der Kunde setzt V6.2.2, ich verwende die JSON API. Bislang hat alles gut funkioniert, lediglich beim Aufruf SetCustomer erhalte ich stets die Response: {"result":false,"message":"FAIL FAIL email address missing"} Der Post-Request sieht in etwa wie folgt aus: { "paras": { "user": "XXX", "pass": "XXX", "Item": [ { "postcode": "95445", "external_id": "D00030", "shop_id": "1", "country_code": "DE", "company": "Testfirma neuer Shop", "street_address": "Am Bauhof 19", "mail": "[email protected]", "city": "Bayreuth", "company_3": "", "company_2": "", "customers_status": "2", "phone": "0921445566" }] }, "function": "setCustomer" } Woran kann das liegen, habe ich was vergessen oder ist das ein Bug in der API? Leider gibt auch Google und die Dokumentation keine brauchbaren Informationen. Quote Link to comment Share on other sites More sharing options...
xt:Commerce Posted March 18, 2021 Report Share Posted March 18, 2021 Das liegt daran das du versuchst mehrere Items zu übergeben, setCustomer kann aber nur 1 item verarbeiten. Falsch: "Item": [{}] Richtig: "Item": {} Siehe Dokumentierten Call: https://xtcommerce.atlassian.net/wiki/spaces/XT41DUE/pages/10256549/setCustomer+JSON Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.