Skip to main content
OPTIONS
/
filter
Filter Resource Options
curl --request OPTIONS \
  --url http://{host}:{port}/{contextPath}/filter \
  --header 'Authorization: Basic <encoded-value>'
{
  "links": [
    {
      "method": "GET",
      "href": "http://localhost:8080/engine-rest/filter",
      "rel": "list"
    },
    {
      "method": "GET",
      "href": "http://localhost:8080/engine-rest/filter/count",
      "rel": "count"
    },
    {
      "method": "POST",
      "href": "http://localhost:8080/engine-rest/filter/create",
      "rel": "create"
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json

Request successful.

The links associated to this resource, with method, href and rel.