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
In orders api, according to the docs, there is a field ElectronicInvoiceStatus.
But for all orders this field seems to be not available.
When using as a filter, no matter which filter values, empty array ist returned.
https://developer-docs.amazon.com/sp-api/docs/orders-api-v0-use-case-guide
await sp.callAPI({ operation: 'getOrders', endpoint: 'orders', restricted_data_token: this._rdt, query: { CreatedAfter: dateLimit, MarketplaceIds: this._marketPlaceIds, ElectronicInvoiceStatuses: ['NotRequired', 'NotFound', 'Processing', 'Errored', 'Accepted'], } });
await sp.callAPI({
operation: 'getOrders',
endpoint: 'orders',
restricted_data_token: this._rdt,
query: {
CreatedAfter: dateLimit,
MarketplaceIds: this._marketPlaceIds,
ElectronicInvoiceStatuses: ['NotRequired', 'NotFound', 'Processing', 'Errored', 'Accepted'],
}
});
The text was updated successfully, but these errors were encountered:
same here, did you solve this?
Sorry, something went wrong.
I too observed this behavior.. Is there a solution .. Please help
No branches or pull requests
In orders api, according to the docs, there is a field ElectronicInvoiceStatus.
But for all orders this field seems to be not available.
When using as a filter, no matter which filter values, empty array ist returned.
https://developer-docs.amazon.com/sp-api/docs/orders-api-v0-use-case-guide
await sp.callAPI({
operation: 'getOrders',
endpoint: 'orders',
restricted_data_token: this._rdt,
query: {
CreatedAfter: dateLimit,
MarketplaceIds: this._marketPlaceIds,
ElectronicInvoiceStatuses: ['NotRequired', 'NotFound', 'Processing', 'Errored', 'Accepted'],
}
});
The text was updated successfully, but these errors were encountered: