1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00
budibase/packages/server/specs/openapi.json

28 lines
551 B
JSON
Raw Normal View History

2022-02-17 05:42:50 +13:00
{
"openapi": "3.0.0",
"info": {
"title": "Budibase API",
"description": "The public API for Budibase apps and its services.",
"version": "1.0.0"
},
"servers": [
{
"url": "http://budibase.app/api",
"description": "Budibase Cloud API"
}
],
2022-02-17 07:23:38 +13:00
"paths": {
"/api/public/v1/row/search": {
"post": {
"description": "Search for rows.",
"responses": {
"200": {
"description": "Returns the rows."
}
}
}
}
},
2022-02-17 05:42:50 +13:00
"components": {},
"tags": []
}