how to capture the http status code from service callout in Apigee

2.5k Views Asked by At

Please let me know how to capture the HTTP status code received from a 3rd party invoke using Service Callout policy. I need this to do some conditional checks in flow.

Thanks

2

There are 2 best solutions below

0
On BEST ANSWER

Finally got it with some experimentation

context.getVariable("calloutResponse.status.code");

Cheers!!

0
On

Your the response object is defined in the Callout policy -- by default ApigeeUI uses calloutResponse, but good convention is to rename it to something more informative and less likely to get overwritten.

So, if you named it, for example, "yahooWeather" you could then access the variable "yahooWeather.status.code".