Skip to content

Commit

Permalink
Automated commit 'ISCCOMPLI-698 : Update Campaign filter API docs cha…
Browse files Browse the repository at this point in the history
…nges for V1 to V3 migration (#1460)

* ISCCOMPLI-698 Update Campaign filter API docs changes for V1 to V3 migration

* ISCCOMPLI-698 updated description' by github action: 6692250351
  • Loading branch information
tyler-mairose-sp committed Oct 30, 2023
1 parent aac1041 commit 508fd4e
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions idn/v3/paths/campaign-filter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,46 @@ get:
$ref: '../responses/404.yaml'
'429':
$ref: '../responses/429.yaml'
'500':
$ref: '../responses/500.yaml'
post:
operationId: updateCampaignFilter
tags:
- Certification Campaign Filters
summary: Updates a Campaign Filter
description: >-
Updates an existing campaign filter using the filter's ID.
security:
- UserContextAuth: [ idn:campaign-filter:update ]
parameters:
- in: path
name: filterId
schema:
type: string
example: e9f9a1397b842fd5a65842087040d3ac
required: true
description: The ID of the campaign filter being modified.
requestBody:
required: true
description: A campaign filter details with updated field values.
content:
application/json:
schema:
$ref: '../schemas/CampaignFilterDetails.yaml'
responses:
'200':
description: Created successfully.
content:
application/json:
schema:
$ref: '../schemas/CampaignFilterDetails.yaml'
'400':
$ref: '../responses/400.yaml'
'401':
$ref: '../responses/401.yaml'
'403':
$ref: '../responses/403.yaml'
'429':
$ref: '../responses/429.yaml'
'500':
$ref: '../responses/500.yaml'

0 comments on commit 508fd4e

Please sign in to comment.