Home > Software engineering >  Does Azure API Management support streaming?
Does Azure API Management support streaming?

Time:12-01

Does Azure API Management supports streaming e.g. sending 10 GB payloads? It would be a REST API returning a JSON array.

CodePudding user response:

The payload is streamed by default unless you buffet it explicitly by using either policy expression (context.Request.Body, context.Response.Body), transformation policies that manipulate the body like json-to-xml or the content validation policies like the validate-content policy

  • Related