The docs contain this snippet for verification at this url Webhooks | Make Apps
{
"verification": {
"condition": "{{if(body.code, true, false)}}",
"respond": {
"status": 202,
"type": "json",
"body": {
"code": "{{body.code}} | 123abc"
}
}
}
}
I cant see how to create two respond branches - one for if condition true, one for if condition false.
Any pointers?