Endpoints
Each collection can expose these methods. Disabled methods are not callable, even with a valid token.
| Method | HTTP | Path |
|---|---|---|
list |
GET | /api/p/:projectId/:table |
get |
GET | /api/p/:projectId/:table/:id |
create |
POST | /api/p/:projectId/:table |
update |
PUT | /api/p/:projectId/:table/:id |
delete |
DELETE | /api/p/:projectId/:table/:id |
upload |
POST | .../:id/files/:field/upload-sessions (then complete) |
download |
GET | .../:id/files/:field/:fileId |
fileDelete |
DELETE | .../:id/files/:field/:fileId |
Bulk update is PATCH /api/p/:projectId/:table with a filter. Bulk delete is DELETE on the collection URL with a filter. Both require the matching write endpoint to be enabled and at least one filter (see Query).
Console
Section titled “Console”Open the table → Endpoints and toggle methods. Copy the path from the API tester if you are calling REST directly.
Rules attach to endpoints
Section titled “Rules attach to endpoints”Access rules are per endpoint. A list rule does not automatically apply to get. Add rules on every method your app uses.