← Marketing API
GoogleAdsSharedCriteria
Singular: GoogleAdsSharedCriterion — Base URL: https://marketing-api.ayoune.app — Access: read-only — Machine-readable spec (JSON · YAML)
Endpoints
| Method | Path | Description | Right |
|---|---|---|---|
| GET | /googleadssharedcriteria |
List with filters/pagination | marketing.googleadssharedcriteria.view |
| GET | /googleadssharedcriteria/:id |
Single record by ID | marketing.googleadssharedcriteria.view |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// List all
const list = await ay.marketing.googleAdsSharedCriteria.find().limit(10).exec();
// Single record
const one = await ay.marketing.googleAdsSharedCriteria.findById('OBJECT_ID').exec();