aYOUne
← Monitoring API

MarketResearchKeywordSets

Singular: MarketResearchKeywordSet — Base URL: https://monitoring-api.ayoune.app — Access: CRUD

play_circle Try it now beta

Requests are proxied through the consumer-app to *.ayoune.app. Tokens stay in your browser and are forwarded per call.

Endpoints

MethodPathDescriptionRight
GET /marketresearchkeywordsets List with filters/pagination monitoring.marketresearchkeywordsets.view
GET /marketresearchkeywordsets/:id Single record monitoring.marketresearchkeywordsets.view
POST /marketresearchkeywordsets Create new record monitoring.marketresearchkeywordsets.new
PUT /marketresearchkeywordsets Update record monitoring.marketresearchkeywordsets.edit
DELETE /marketresearchkeywordsets/:id Delete record monitoring.marketresearchkeywordsets.delete

SDK

import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');

// List all
const list = await ay.monitoring.marketResearchKeywordSets.find().limit(10).exec();

// Single record
const one = await ay.monitoring.marketResearchKeywordSets.findById('OBJECT_ID').exec();

// Create
const created = await ay.monitoring.marketResearchKeywordSets.create({ name: 'Foo' });

See also