Skip to main content
GET
/
decision-definition
/
count
Get List Count
curl --request GET \
  --url http://{host}:{port}/{contextPath}/decision-definition/count \
  --header 'Authorization: Basic <encoded-value>'
{
  "count": 1
}

Authorizations

Authorization
string
header
required

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

Query Parameters

decisionDefinitionId
string

Filter by decision definition id.

decisionDefinitionIdIn
string

Filter by decision definition ids.

name
string

Filter by decision definition name.

nameLike
string

Filter by decision definition names that the parameter is a substring of.

deploymentId
string

Filter by the deployment the id belongs to.

deployedAfter
string<date-time>

Filter by the deploy time of the deployment the decision definition belongs to. Only selects decision definitions that have been deployed after (exclusive) a specific time.

deployedAt
string<date-time>

Filter by the deploy time of the deployment the decision definition belongs to. Only selects decision definitions that have been deployed at a specific time (exact match).

key
string

Filter by decision definition key, i.e., the id in the DMN 1.0 XML. Exact match.

keyLike
string

Filter by decision definition keys that the parameter is a substring of.

category
string

Filter by decision definition category. Exact match.

categoryLike
string

Filter by decision definition categories that the parameter is a substring of.

version
integer

Filter by decision definition version.

latestVersion
boolean

Only include those decision definitions that are latest versions. Value may only be true, as false is the default behavior.

resourceName
string

Filter by the name of the decision definition resource. Exact match.

resourceNameLike
string

Filter by names of those decision definition resources that the parameter is a substring of.

decisionRequirementsDefinitionId
string

Filter by the id of the decision requirements definition this decision definition belongs to.

decisionRequirementsDefinitionKey
string

Filter by the key of the decision requirements definition this decision definition belongs to.

withoutDecisionRequirementsDefinition
boolean

Only include decision definitions which does not belongs to any decision requirements definition. Value may only be true, as false is the default behavior.

tenantIdIn
string

Filter by a comma-separated list of Strings. A decision definition must have one of the given tenant ids.

withoutTenantId
boolean

Only include decision definitions which belong to no tenant. Value can effectively only be true, as false is the default behavior.

includeDecisionDefinitionsWithoutTenantId
boolean

Include decision definitions which belong to no tenant. Can be used in combination with tenantIdIn. Value may only be true, as false is the default behavior.

versionTag
string

Filter by the version tag.

versionTagLike
string

Filter by the version tags of those decision definition resources that the parameter is a substring of.

Response

Request successful.

count
integer

The number of matching instances.