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

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The id of the filter to be checked.

Response

200 - application/json

Request successful.

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