snello CMS
  • Snello CMS
  • Get Started
  • Architecture
    • Snello API
    • Snello ADMIN
  • Docker Images
    • Database
    • Storage
    • Mail settings
    • Docker compose
  • Metadata
    • UUIDs
    • To reuse existing database tables
    • Advanced configuration
    • Reserved Metadata Names
  • Field Definitions
    • Data Types
    • Multijoin: database and rest queries
    • CRUD options
  • How to query using REST API
    • metadata api
    • filters & limit & sort
      • protect your api
  • Conditions
    • Multijoin conditions
  • Documents
    • Download endpoint
  • How to publish your web pages
  • Select Queries
  • Authentication & Authorization
    • User & Roles
    • Password recovery
    • Url Map Rules
  • Links
  • Draggables & Droppables
    • angular syntax
  • Deploy in Production
    • Let’s Encrypt
    • Remove Hashbang
    • Traefik
    • Rendertron
  • Notes
    • Micronaut - create extensions
    • Native image
    • Editor for code
    • Multi languages
  • k8s cache distributed
  • Developers Space
    • Java code
    • Angular code
  • Roadmap
    • Java Evolution
    • Angular Evolution
    • Next features
Powered by GitBook
On this page
  • list of elements
  • single element
  • list of connected elements in multi_join
  • single element in join list
  • create element
  • update element
  • delete element
Edit on GitHub
  1. How to query using REST API

metadata api

For all metadata you have the same Endpoints

list of elements

GET https://api.snello.io/api/:metadata:name

Return list of metdata instances

Path Parameters

Name
Type
Description

metadata:name*

string

the name metadata

single element

GET https://api.snello.io/api/:metadata:name/:uuid

Path Parameters

Name
Type
Description

metadata:name*

string

the name of metadata

uuid*

string

the uuid of element

list of connected elements in multi_join

GET https://api.snello.io/api/:metadata:name/:uuid/:multi:join:metdata:name

Path Parameters

Name
Type
Description

metadata:name*

string

the name of metadata

uuid*

string

the uuid of element

multi:join:metdata:name*

string

the name of join metadata

single element in join list

GET https://api.snello.io/api/:metadata:name/:uuid/:multi:join:metdata:name/:join:uuid

Path Parameters

Name
Type
Description

string

create element

POST https://api.snello.io/api/:metadata:name

Path Parameters

Name
Type
Description

string

update element

PUT https://api.snello.io/api/:metadata:name/:uuid

Path Parameters

Name
Type
Description

string

delete element

DELETE https://api.snello.io/api/:metadata:name/:uuid

Path Parameters

Name
Type
Description

string

PreviousHow to query using REST APINextfilters & limit & sort

Last updated 2 years ago