Hello.
I'm currently trying to integrate with a Microsoft Business Central solution On-Premise (BC14) and want to subscribe webhooks to OData endpoints and not only the REST endpoints.
As an example, I can perfectly fine subscribe to the following endpoint:
navservice.internal:8612/.../items
But I'm unable to subscribe to the following two
navservice.internal:8612/.../Webshop_Categories
navservice.internal:8612/.../Webshop_Categories
The first response is the following:
{
"error": {
"code": "BadRequest_NotFound",
"message": "Resource not found for the segment 'Company'. CorrelationId: e86fbfaa-7553-4413-8664-1f823b2a1d64."
}
}
The second response is the following:
{
"error": {
"code": "BadRequest_NotFound",
"message": "Resource not found for the segment 'ODataV4'. CorrelationId: c86fbfaa-7553-4413-8664-1f823b2a1d62."
}
}
Shouldn't I be able to subscribe to OData endpoints since the April '19 update?