Inventory API
Here is a query that allows you to get all entities that are accessible to your account.
warning
Contimo API is live and changing. Contimo guarantees that only contracts listed in this documentation will be unchanged. Anything else can be changed without any notice
query Inventory {
publishers: PublisherMany {
_id
slug
name
}
advertisers: AdvertiserMany {
_id
name
}
websites: WebsiteMany {
_id
name
url
}
campaigns: CampaignMany {
_id
name
advertiserId
advertiser {
_id
name
}
budget
startDate
endDate
}
publications: PublicationMany {
_id
websiteId
campaignId
budget
startDate
endDate
}
}