Hey,
I'm doing a custom integration against BC OData. I need to be able to send "delete" requests.
I can do "Get", "Post" and "Patch" by doing :
Endpoint createProductEndpoint = endpointService.GetEndpointById(20);
createProductEndpoint = createProductEndpoint.Clone();
createProductEndpoint.RequestType = EndpointRequestType.GET;
Can you please add "Delete" to the EndpointRequestType enum?
Thanks, Jonas