# HTTP/REST Endpoint Properties

## `path` (string, required)

API path to call

Example: `"/some/api"`

## `interval` (integer)

Polling interval in ms for subscriptions

Default: `5000`

## `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)

Optional query parameters to be added to the request

## `headers` (object)

Optional headers to be added to the request

## `method` (string)

The method used for write endpoints one of: patch, post, put

Default: `"post"`
