Example 1 - Simple “Posts” application
Schema
GET endpoint examples
GET https://$ENV_API_URL/rest/postsGET https://$ENV_API_URL/rest/posts/3GET https://$ENV_API_URL/rest/posts?filter={"id":3}GET https://$ENV_API_URL/rest/users?filter={"first_name":"Jane", "last_name":"Doe"}GET https://$ENV_API_URL/rest/posts?take=5GET https://$ENV_API_URL/rest/users?select={"$scalars": true, "posts": true}GET https://$ENV_API_URL/rest/users/3?select={"$scalars": true, "posts": true}GET https://$ENV_API_URL/rest/users?select={"$scalars": true, "posts": true}&filter={"first_name":"Jane", "last_name":"Doe"}
POST endpoint examples
PATCH endpoint examples
DELETE endpoint examples
PreviousExamples of Neurelo Auto-Generated REST API endpointsNextExample 2 - "DVD Rentals" application
Last updated