Hi,
I have created a proxy with base path: /api/v1/comms/partners
And in the product i have defined the resource path to be “/”. so that all sub paths are supported.
Now, my problem is that i have 4 requests for this proxy
- GET with path: /api/v1/comms/partners, It has VerifyAccessToken and a AssignMessagePoilcy, and all works fine
- POST with path: /api/v1/comms/partners, It has VerifyAccessToken and a AssignMessagePoilcy, and all works fine
- DELETE with path: /api/v1/comms/partners, It has VerifyAccessToken and a AssignMessagePoilcy, and all works fine
- PUT: with path: /api/v1/comms/partners/{partnerId}/providers/{providerid}, It has VerifyAccessToken and a AssignMessagePoilcy too, but it never calls these policies. The request is passing successfully without even checking the access token and assign message policy. The call is passed even if i do not send the access token at all.
Below is how i have set them up:
What is it that I am missing for the PUT request to check the policies attached?
Thanks,
Kumud