HttpEndpoint
path
(string, required)
path
(string, required)API path to call
Example: "/some/api"
interval
(integer)
interval
(integer)Polling interval in ms for subscriptions
Default: 5000
cronExpression
(string)
cronExpression
(string)The Cron expression used to poll the endpoint. (For examples, see: https://github.com/node-cron/node-cron)
Examples: "1,2,4,5 * * * *"
, "1-5 * * * *"
, "*/2 * * * *"
, "* * * January,September Sunday"
query
(object)
query
(object)Optional query parameters to be added to the request
headers
(object)
headers
(object)Optional headers to be added to the request
method
(string)
method
(string)The method used for write endpoints one of: patch, post, put
Default: "post"
Last updated