diff --git a/idn/v3/paths/campaign-filter.yaml b/idn/v3/paths/campaign-filter.yaml index 23a02741..d78edada 100644 --- a/idn/v3/paths/campaign-filter.yaml +++ b/idn/v3/paths/campaign-filter.yaml @@ -9,7 +9,7 @@ get: - userAuth: [idn:campaign-filter:read] parameters: - in: path - name: filterId + name: id schema: type: string example: e9f9a1397b842fd5a65842087040d3ac diff --git a/idn/v3/schemas/CampaignFilterDetails.yaml b/idn/v3/schemas/CampaignFilterDetails.yaml index d2a07868..3052c409 100644 --- a/idn/v3/schemas/CampaignFilterDetails.yaml +++ b/idn/v3/schemas/CampaignFilterDetails.yaml @@ -1,6 +1,10 @@ type: object description: Campaign Filter Details properties: + id: + type: string + description: The unique ID of the campaign filter + example: 5ec18cef39020d6fd7a60ad3970aba61 name: type: string description: Campaign filter name. @@ -63,7 +67,14 @@ properties: "children": null } ] + isSystemFilter: + type: boolean + default: false + description: If true, the filter is created by the system. If false, the filter is created by a user. + example: false required: + - id - name - owner - - mode \ No newline at end of file + - mode + - isSystemFilter \ No newline at end of file