We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SDK you're using (please complete the following information):
Describe the bug When attempting to create a Purchase Order via the API, I consistently encounter the following validation error:
"Unknown tracking details. A Tracking Category did not match a known Active TrackingCategory."
I can confidently confirm that the tracking category used is valid, as it is successfully used for invoices within the system.
This error persists when using the API Explorer, which suggests that it's not an isolated issue on my end.
To Reproduce Steps to reproduce the behavior:
Expected behavior The API should accept the valid tracking (Business Unit) details without triggering a validation error.
Additional context I've noticed a similar issue here Example payload: { "PurchaseOrders": [ { "Contact": { "ContactID": ContactID }, "LineItems": [ { "Description": "Purchase Order - Terms and Conditions, "UnitAmount": 1.0000, "TaxType": "INPUT2", "TaxAmount": 0.15, "LineAmount": 1.00, "AccountCode": "811", "Tracking": [ { "TrackingCategoryID": TrackingCategoryID, "TrackingOptionID": TrackingOptionID "Options": [], "ValidationErrors": [] } ], "Quantity": 1.0000, "ValidationErrors": [] } ], "Date": "2023-09-18" } ] }
{ "PurchaseOrders": [ { "Contact": { "ContactID": ContactID }, "LineItems": [ { "Description": "Purchase Order - Terms and Conditions, "UnitAmount": 1.0000, "TaxType": "INPUT2", "TaxAmount": 0.15, "LineAmount": 1.00, "AccountCode": "811", "Tracking": [ { "TrackingCategoryID": TrackingCategoryID, "TrackingOptionID": TrackingOptionID "Options": [], "ValidationErrors": [] } ], "Quantity": 1.0000, "ValidationErrors": [] } ], "Date": "2023-09-18" } ] }
The text was updated successfully, but these errors were encountered:
PETOSS-348
Sorry, something went wrong.
Thanks for raising an issue, a ticket has been created to track your request
No branches or pull requests
SDK you're using (please complete the following information):
Describe the bug
When attempting to create a Purchase Order via the API, I consistently encounter the following validation error:
"Unknown tracking details. A Tracking Category did not match a known Active TrackingCategory."
I can confidently confirm that the tracking category used is valid, as it is successfully used for invoices within the system.
This error persists when using the API Explorer, which suggests that it's not an isolated issue on my end.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The API should accept the valid tracking (Business Unit) details without triggering a validation error.
Additional context
I've noticed a similar issue here
Example payload:
{ "PurchaseOrders": [ { "Contact": { "ContactID": ContactID }, "LineItems": [ { "Description": "Purchase Order - Terms and Conditions, "UnitAmount": 1.0000, "TaxType": "INPUT2", "TaxAmount": 0.15, "LineAmount": 1.00, "AccountCode": "811", "Tracking": [ { "TrackingCategoryID": TrackingCategoryID, "TrackingOptionID": TrackingOptionID "Options": [], "ValidationErrors": [] } ], "Quantity": 1.0000, "ValidationErrors": [] } ], "Date": "2023-09-18" } ] }
The text was updated successfully, but these errors were encountered: