Skip to main content
GET
/
event-subscription
/
count
Get List Count
curl --request GET \
  --url http://{host}:{port}/{contextPath}/event-subscription/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

eventSubscriptionId
string

Only select subscription with the given id.

eventName
string

Only select subscriptions for events with the given name.

eventType
enum<string>

Only select subscriptions for events with the given type. Valid values: message, signal, compensate and conditional.

Available options:
message,
signal,
compensate,
conditional
executionId
string

Only select subscriptions that belong to an execution with the given id.

processInstanceId
string

Only select subscriptions that belong to a process instance with the given id.

activityId
string

Only select subscriptions that belong to an activity with the given id.

tenantIdIn
string

Filter by a comma-separated list of tenant ids. Only select subscriptions that belong to one of the given tenant ids.

withoutTenantId
boolean

Only select subscriptions which have no tenant id. Value may only be true, as false is the default behavior.

includeEventSubscriptionsWithoutTenantId
boolean

Select event subscriptions which have no tenant id. Can be used in combination with tenantIdIn parameter. Value may only be true, as false is the default behavior.

Response

Request successful.

count
integer

The number of matching instances.