[
{
"id": "httpbin get",
"type": "http",
"task": {
"interval": "*/5 * * * * *"
},
"params": {
"url": "http://httpbin.org/get",
"method": "GET",
"headers": {
"authorization": "Bearer abc",
"content-type": "application/json"
}
}
},
{
"id": "httpbin post",
"type": "http",
"task": {
"interval": "* * */10 * * *"
},
"params": {
"url": "http://httpbin.org/post",
"method": "POST",
"headers": {
"authorization": "Bearer abc",
"content-type": "application/json"
}
}
}
]