Hi all,
I'm new to Apigee. I'm working on a scenario, where I need to mention a condition if the response.content
{
Res:[{filed 1},{field 2}...{filed n}]
}
has less than 10 fields , I need to make a call to other service.
what is the condition to be used?
I tried below two options, none of them worked
1.<Condition>(response.content.length < 10)</Condition>
2. <Condition>(response.header.Content-Length < 10)</Condition>
build error:
The content of elements must consist of well-formed character data or markup.]"
Can some one suggest?
Thanks in advance