Scheduler
  • Scheduler
  • Job types
    • Http
    • Exec
    • Pipes
  • Examples
Powered by GitBook
On this page
  1. Job types

Http

Job for sending scheduled HTTP requests using system HttpClient (must be configured). Job does not process the response (logged).

Parameters

Name
Description
Default
Mandatory

method

HTTP method

"GET"

url

URL to call

destination

HttpClient name

"default"

params

Request parameter hash/dictionary.

headers

Request header hash/dictionary.

{
    "method": "POST",
    "url": "http://example.com/path",
    "destination": "example",
    "params": {
        "param01": "value01"
    },
    "headers": {
        "X-TEST": "Test header"
    }
}

Schedules

PreviousJob typesNextExec

Last updated 1 year ago