You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 19, 2025. It is now read-only.
Looking at the code it appears that the Request body for creating/updating an API does not match what the Microsoft API Management api is expecting. Azure Create or Update Documentation
Specifically the request body has: { "properties": { "format": "<format type>, "value": "<specification value or url>" } }
But it looks like the requests this extension is building have: { "properties": { "contentFormat": "<format type>, "contentValue": "<specification value or url>" } }
Which are not supported and causing the Bad Request (tested via Postman).
The text was updated successfully, but these errors were encountered:
Looking at the code it appears that the Request body for creating/updating an API does not match what the Microsoft API Management api is expecting.
Azure Create or Update Documentation
Specifically the request body has:
{ "properties": { "format": "<format type>, "value": "<specification value or url>" } }
But it looks like the requests this extension is building have:
{ "properties": { "contentFormat": "<format type>, "contentValue": "<specification value or url>" } }
Which are not supported and causing the Bad Request (tested via Postman).
The text was updated successfully, but these errors were encountered: