2022-05-18 16:40:55 +00:00
|
|
|
# REST API
|
|
|
|
|
2022-10-31 15:20:27 +00:00
|
|
|
NocoBase's HTTP API is a superset of the REST API, and the standard CRUD API also supports the RESTful style.
|
2022-05-18 16:40:55 +00:00
|
|
|
|
2022-10-31 15:20:27 +00:00
|
|
|
## Collection resources
|
2022-05-18 16:40:55 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
|
2022-10-31 15:20:27 +00:00
|
|
|
### Create collection
|
2022-05-18 16:40:55 +00:00
|
|
|
|
|
|
|
HTTP API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
POST /api/<collection>:create
|
|
|
|
|
|
|
|
{} # JSON body
|
|
|
|
```
|
|
|
|
|
|
|
|
REST API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
POST /api/<collection>
|
|
|
|
|
|
|
|
{} # JSON body
|
|
|
|
```
|
|
|
|
|
2022-10-31 15:20:27 +00:00
|
|
|
### List collection
|
2022-05-18 16:40:55 +00:00
|
|
|
|
|
|
|
HTTP API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
GET /api/<collection>:list
|
|
|
|
```
|
|
|
|
|
|
|
|
REST API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
GET /api/<collection>
|
|
|
|
```
|
|
|
|
|
2022-10-31 15:20:27 +00:00
|
|
|
### View collection details
|
2022-05-18 16:40:55 +00:00
|
|
|
|
|
|
|
HTTP API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
GET /api/<collection>:get?filterByTk=<collectionIndex>
|
|
|
|
GET /api/<collection>:get/<collectionIndex>
|
|
|
|
```
|
|
|
|
|
|
|
|
REST API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
GET /api/<collection>/<collectionIndex>
|
|
|
|
```
|
|
|
|
|
2022-10-31 15:20:27 +00:00
|
|
|
### Update collection
|
2022-05-18 16:40:55 +00:00
|
|
|
|
|
|
|
HTTP API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
POST /api/<collection>:update?filterByTk=<collectionIndex>
|
|
|
|
|
|
|
|
{} # JSON body
|
|
|
|
|
2022-10-31 15:20:27 +00:00
|
|
|
# Or
|
2022-05-18 16:40:55 +00:00
|
|
|
POST /api/<collection>:update/<collectionIndex>
|
|
|
|
|
|
|
|
{} # JSON body
|
|
|
|
```
|
|
|
|
|
|
|
|
REST API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
PUT /api/<collection>/<collectionIndex>
|
|
|
|
|
|
|
|
{} # JSON body
|
|
|
|
```
|
|
|
|
|
2022-10-31 15:20:27 +00:00
|
|
|
### Delete collection
|
2022-05-18 16:40:55 +00:00
|
|
|
|
|
|
|
HTTP API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
POST /api/<collection>:destroy?filterByTk=<collectionIndex>
|
2022-10-31 15:20:27 +00:00
|
|
|
# Or
|
2022-05-18 16:40:55 +00:00
|
|
|
POST /api/<collection>:destroy/<collectionIndex>
|
|
|
|
```
|
|
|
|
|
|
|
|
REST API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
DELETE /api/<collection>/<collectionIndex>
|
|
|
|
```
|
|
|
|
|
2022-10-31 15:20:27 +00:00
|
|
|
## Association resources
|
2022-05-18 16:40:55 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
|
2022-10-31 15:20:27 +00:00
|
|
|
### Create Association
|
2022-05-18 16:40:55 +00:00
|
|
|
|
|
|
|
HTTP API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
POST /api/<collection>/<collectionIndex>/<association>:create
|
|
|
|
|
|
|
|
{} # JSON body
|
|
|
|
```
|
|
|
|
|
|
|
|
REST API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
POST /api/<collection>/<collectionIndex>/<association>
|
|
|
|
|
|
|
|
{} # JSON body
|
|
|
|
```
|
|
|
|
|
2022-10-31 15:20:27 +00:00
|
|
|
### List Association
|
2022-05-18 16:40:55 +00:00
|
|
|
|
|
|
|
HTTP API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
GET /api/<collection>/<collectionIndex>/<association>:list
|
|
|
|
```
|
|
|
|
|
|
|
|
REST API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
GET /api/<collection>/<collectionIndex>/<association>
|
|
|
|
```
|
|
|
|
|
2022-10-31 15:20:27 +00:00
|
|
|
### View Association details
|
2022-05-18 16:40:55 +00:00
|
|
|
|
|
|
|
HTTP API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
GET /api/<collection>/<collectionIndex>/<association>:get?filterByTk=<associationIndex>
|
2022-10-31 15:20:27 +00:00
|
|
|
# Or
|
2022-05-18 16:40:55 +00:00
|
|
|
GET /api/<collection>/<collectionIndex>/<association>:get/<associationIndex>
|
|
|
|
```
|
|
|
|
|
|
|
|
REST API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
GET /api/<collection>/<collectionIndex>/<association>:get/<associationIndex>
|
|
|
|
```
|
|
|
|
|
2022-10-31 15:20:27 +00:00
|
|
|
### Update Association
|
2022-05-18 16:40:55 +00:00
|
|
|
|
|
|
|
HTTP API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
POST /api/<collection>/<collectionIndex>/<association>:update?filterByTk=<associationIndex>
|
|
|
|
|
|
|
|
{} # JSON body
|
|
|
|
|
2022-10-31 15:20:27 +00:00
|
|
|
# Or
|
2022-05-18 16:40:55 +00:00
|
|
|
POST /api/<collection>/<collectionIndex>/<association>:update/<associationIndex>
|
|
|
|
|
|
|
|
{} # JSON body
|
|
|
|
```
|
|
|
|
|
|
|
|
REST API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
PUT /api/<collection>/<collectionIndex>/<association>:update/<associationIndex>
|
|
|
|
|
2022-10-31 15:20:27 +00:00
|
|
|
{} # JSON
|
2022-05-18 16:40:55 +00:00
|
|
|
```
|
|
|
|
|
2022-10-31 15:20:27 +00:00
|
|
|
### Delete Association
|
2022-05-18 16:40:55 +00:00
|
|
|
|
|
|
|
HTTP API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
POST /api/<collection>/<collectionIndex>/<association>:destroy?filterByTk=<associationIndex>
|
2022-10-31 15:20:27 +00:00
|
|
|
# Or
|
2022-05-18 16:40:55 +00:00
|
|
|
POST /api/<collection>/<collectionIndex>/<association>:destroy/<associationIndex>
|
|
|
|
```
|
|
|
|
|
|
|
|
REST API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
DELETE /api/<collection>/<collectionIndex>/<association>/<associationIndex>
|
|
|
|
```
|