Bug in API documents for POST /salesorders (contact_persons)
Hi all,
what is the correct place to report bugs in the documentation? There are several, and this last one cost me a few hours of trial and errors, so I would love to see them fixed.
Eg (does not work):
"contact_persons": [
{ "contact_person_id": 4815000000044080 }
],
The real situation is that contact_persons is an array, and each item of the array should contain the ID of the contact person.
Eg (works):
- "contact_persons": [
- 4815000000044080
- ],
Otherwise, you will get: "Invalid value passed for contact_persons".
Thanks