AngularJS based app hosted on https://123.45.67.89 is accessed through a CDN (Akamai) network which manages the app's domain name https://www.killerapp.com. CDN network is configured to have cache TTL 1 day for everything /* except /api/* for which TTL = 0. The /api/* is the origin app's RESTful API which angularJS part calls with HTTP GET, POST and DELETE. GET and POST work fine but HTTP DELETE to www.killerapp.com/api/orders/00001 returns HTTP 501.
The question: is private CDN network supposed to block HTTP DELETE or there's a way to fix it with the CDN's setup?