Skip to content

Commit

Permalink
Merge pull request #81 from adzerk/akirasato/sc-67669/javascript-mana…
Browse files Browse the repository at this point in the history
…gement-sdk-list-campaign-filtering

Add advertiserId and isArchived query params to list campaigns
  • Loading branch information
akiradev authored Jan 21, 2025
2 parents 20eecb2 + 5eae3b7 commit e4cf0bc
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
15 changes: 15 additions & 0 deletions management/campaign.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,21 @@ paths:
type: integer
format: int32
nullable: true
- name: advertiserId
in: query
description: Returns only campaigns that belong to that advertiser Id
required: false
schema:
type: integer
format: int32
nullable: true
- name: isArchived
in: query
description: Returns only archived flights if true
required: false
schema:
type: boolean
nullable: true
responses:
200:
description: Paged list of Campaigns
Expand Down
15 changes: 15 additions & 0 deletions management/openapi-3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,21 @@ paths:
type: integer
format: int32
nullable: true
- name: advertiserId
in: query
description: Returns only campaigns that belong to that advertiser Id
required: false
schema:
type: integer
format: int32
nullable: true
- name: isArchived
in: query
description: Returns only archived flights if true
required: false
schema:
type: boolean
nullable: true
responses:
200:
description: Paged list of Campaigns
Expand Down

0 comments on commit e4cf0bc

Please sign in to comment.