Skip to main content

List Campaign Filters

GET 

/campaign-filters

Lists all Campaign Filters. Scope can be reduced via standard V3 query params.

All Campaign Filters matching the query params

Request

Query Parameters

    limit int32

    Possible values: <= 250

    Default value: 250

    Max number of results to return. See V3 API Standard Collection Parameters for more information.

    Example: 250
    start int32

    Start/Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.

    Example: 0
    includeSystemFilters boolean

    Default value: true

    If true, include system filters in the count and results, exclude them otherwise. If not provided any value for it then by default it is true.

    Example: true

Responses

List of campaign filter objects

Schema
    items object[]

    The list of campaign filters

  • Array [
  • id string

    Id of the campaign filter

    name stringrequired

    This is campaign filter's name.

    description stringrequired

    This is campaign filter's description.

    owner stringnullablerequired

    The owner of this filter. This field is automatically populated at creation time with the current user.

    mode required

    Possible values: [INCLUSION, EXCLUSION]

    The mode/type of Filter, where it is of INCLUSION or EXCLUSION type. INCLUSION type will include the data in generated campaign as per specified in criteria, whereas EXCLUSION type will exclude the the data in generated campaign as per specified in criteria.

    criteriaList object[]

    List of criteria.

  • Array [
  • type CriteriaTyperequired

    Possible values: [COMPOSITE, ROLE, IDENTITY, IDENTITY_ATTRIBUTE, ENTITLEMENT, ACCESS_PROFILE, SOURCE, ACCOUNT, AGGREGATED_ENTITLEMENT, INVALID_CERTIFIABLE_ENTITY]

    Type of the criteria in the filter. The COMPOSITE filter can contain multiple filters in an AND/OR relationship.

    operation objectnullable

    Operation on a specific criteria

    property stringnullablerequired

    The specified key from the Type of criteria.

    value stringnullablerequired

    The value for the specified key from the Type of Criteria

  • ]
  • ]
  • count integer

    The number of filters returned

Loading...