Example 850
API Routes
REST API route definitions.
{
base_url: "/api/v3"
routes: [
{
method: "GET"
path: "/posts/:id"
handler: "createUsers"
auth: false
}
{
method: "DELETE"
path: "/posts/:id"
handler: "getPosts"
auth: false
}
{
method: "DELETE"
path: "/comments/:id"
handler: "listUsers"
auth: false
}
]
}