You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been working with the Xero API recently and came across a couple of inconsistencies that I wanted to bring to your attention.
Issue 1: update_manual_journal Method
In the documentation, the update_manual_journal method requires a ManualJournals object as an argument, which itself requires an array of ManualJournal objects. However, the method's description states "Updates a specific manual journal".
This implies it should only be updating one journal at a time, which is inconsistent with the requirement for an array of journals.
Here's the code snippet from the documentation which errors out due to providing an array instead of a single journal:
The method name update_or_create_manual_journals suggests that it can handle multiple manual journals. However, the description states: "Updates or creates a single manual journal", and my testing confirms that it indeed only processes one journal at a time.
Not only that but similar to the 1st issue, the example in the documentation is wrong and errors out.
This can be misleading and confusing for developers. It would be great if you could clarify these inconsistencies or consider adjusting the method naming to better match the behavior described in the API documentation.
Thank you for your attention to these matters!
The text was updated successfully, but these errors were encountered:
Hello Xero API team,
I've been working with the Xero API recently and came across a couple of inconsistencies that I wanted to bring to your attention.
Issue 1: update_manual_journal Method
In the documentation, the update_manual_journal method requires a ManualJournals object as an argument, which itself requires an array of ManualJournal objects. However, the method's description states "Updates a specific manual journal".
This implies it should only be updating one journal at a time, which is inconsistent with the requirement for an array of journals.
Here's the code snippet from the documentation which errors out due to providing an array instead of a single journal:
Issue 2: update_or_create_manual_journals Method
The method name update_or_create_manual_journals suggests that it can handle multiple manual journals. However, the description states: "Updates or creates a single manual journal", and my testing confirms that it indeed only processes one journal at a time.
Not only that but similar to the 1st issue, the example in the documentation is wrong and errors out.
Here's the code snippet from the documentation:
This can be misleading and confusing for developers. It would be great if you could clarify these inconsistencies or consider adjusting the method naming to better match the behavior described in the API documentation.
Thank you for your attention to these matters!
The text was updated successfully, but these errors were encountered: