aYOUne
← marketplace API

MarketplaceReviews

Singular: MarketplaceReview — Base URL: https://marketplace-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 /marketplacereviews List with filters/pagination marketplace.marketplacereviews.view
GET /marketplacereviews/:id Single record marketplace.marketplacereviews.view
POST /marketplacereviews Create new record marketplace.marketplacereviews.new
PUT /marketplacereviews Update record marketplace.marketplacereviews.edit
DELETE /marketplacereviews/:id Delete record marketplace.marketplacereviews.delete

SDK

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

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

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

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

See also