-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from adzerk/rs/48713
Add entity counts
- Loading branch information
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
openapi: 3.0.1 | ||
info: | ||
title: Adzerk Management API - Entity Counts | ||
description: Entity Counts related Adzerk Management API | ||
version: '1.0' | ||
servers: | ||
- url: 'https://api.adzerk.net' | ||
tags: | ||
- name: entity-counts | ||
description: Entity Counts | ||
paths: | ||
/v1/entitycounts: | ||
get: | ||
tags: | ||
- entity-counts | ||
operationId: get | ||
security: | ||
- ApiKeyAuth: [] | ||
parameters: | ||
- name: date | ||
in: query | ||
description: The date for the entity counts | ||
required: false | ||
schema: | ||
type: string | ||
format: date | ||
responses: | ||
200: | ||
description: The entity counts | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
properties: | ||
NetworkId: | ||
type: integer | ||
format: int32 | ||
EffectiveAt: | ||
type: string | ||
format: date-time | ||
BillableAdvertisers: | ||
type: string | ||
BillableCampaigns: | ||
type: string | ||
BillableFlights: | ||
type: string | ||
BillableAds: | ||
type: string | ||
BillableCreatives: | ||
type: string | ||
BillableChannels: | ||
type: string | ||
BillableSites: | ||
type: string | ||
BillableZones: | ||
type: string |