Edifirst
Edifirst

Reputation: 98

Can I to use Library inside expressions on Azure Api Management?

I would like to use C# JUST Library for JSON to JSON transformation, similarly is used XSLT on API Manager, Could I to use this library?

Upvotes: 1

Views: 698

Answers (1)

mohaidar
mohaidar

Reputation: 4286

No you can't, I suggest you to have your custom code hosted somewhere and call it using the Send-request policy to achieve the required processing you need on the data.

Otherwise, you need to build your custom logic using policy expression https://learn.microsoft.com/en-us/azure/api-management/api-management-policy-expressions

Upvotes: 2

Related Questions