-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase44_docs
More file actions
527 lines (418 loc) · 17.3 KB
/
Copy pathbase44_docs
File metadata and controls
527 lines (418 loc) · 17.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
<div>
# API Reference
**Base URL:** <a href="https://full-stack-blueprint.base44.app/api" </a>
## Authentication
```
api_key: 4977cc7ef0ab4e93901261c177e4584e
Content-Type: application/json
```
## MasterTemplate
### Schema
| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `name` | string | Yes | Template name, e.g. 'Login + Signup + Profile' |
| `category` | string | | e.g. Auth, Checkout, Dashboard |
| `status` | `draft`, `ready`, `deployed` | | |
| `tags` | array | | |
| `business_analysis` | object | | problemStatement, users, coreFeatures, userStories, acceptanceCriteria, edgeCases, successMetrics |
| `frontend` | object | | platforms, screens, uiState, apiIntegrationNotes, navigation |
| `backend` | object | | architecture, endpoints, dataModels, auth, businessRules |
| `infrastructure` | object | | environments, database, secrets, ciCd, loggingMonitoring |
| `tester` | object | | testLevels, testPlan, testCases, qualityGates |
| `id` | string | | Unique record identifier |
| `created_date` | string | | Record creation timestamp |
| `updated_date` | string | | Record last update timestamp |
| `created_by_id` | string | | ID of the user who created the record |
### Endpoints
### `GET /entities/MasterTemplate`
List MasterTemplate records
Retrieve a list of MasterTemplate records with optional filtering, sorting, and pagination.
**Parameters:**
- `q` (query): JSON query filter, e.g. {"status":"active"}
- `limit` (query): Maximum number of records to return
- `skip` (query): Number of records to skip (pagination)
- `sort_by` (query): Field name to sort by. Prefix with '-' for descending order, e.g. -created_date
```bash
curl -X GET "https://full-stack-blueprint.base44.app/api/entities/MasterTemplate" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json"
```
### `POST /entities/MasterTemplate`
Create a MasterTemplate record
```bash
curl -X POST "https://full-stack-blueprint.base44.app/api/entities/MasterTemplate" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '{"name":"Example name"}'
```
### `DELETE /entities/MasterTemplate`
Delete multiple MasterTemplate records
**Warning:** Passing an empty `{}` query will delete ALL records in this entity.
```bash
# WARNING: passing an empty {} query will delete ALL records
curl -X DELETE "https://full-stack-blueprint.base44.app/api/entities/MasterTemplate" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '{"name":"Example name"}'
```
### `POST /entities/MasterTemplate/bulk`
Bulk create MasterTemplate records
```bash
curl -X POST "https://full-stack-blueprint.base44.app/api/entities/MasterTemplate/bulk" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '[{"name":"Example name"}]'
```
### `PUT /entities/MasterTemplate/bulk`
Bulk update MasterTemplate records
Each item must include an 'id' field along with the fields to update.
```bash
curl -X PUT "https://full-stack-blueprint.base44.app/api/entities/MasterTemplate/bulk" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '[{"id":"<record_id>","name":"Example name"}]'
```
### `PATCH /entities/MasterTemplate/update-many`
Update many MasterTemplate records by query
Update multiple records matching a query filter. Supports MongoDB update operators ($set, $inc, $push, $pull).
```bash
curl -X PATCH "https://full-stack-blueprint.base44.app/api/entities/MasterTemplate/update-many" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '{"query":{"name":"Example name"},"data":{"$set":{"name":"Example name"}}}'
```
### `GET /entities/MasterTemplate/{MasterTemplate_id}`
Get a MasterTemplate record by ID
**Parameters:**
- `MasterTemplate_id` (path): Record ID
```bash
# Replace <MasterTemplate_id> in the URL with an actual Record ID
curl -X GET "https://full-stack-blueprint.base44.app/api/entities/MasterTemplate/<MasterTemplate_id>" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json"
```
### `PUT /entities/MasterTemplate/{MasterTemplate_id}`
Update a MasterTemplate record
**Parameters:**
- `MasterTemplate_id` (path): Record ID
```bash
# Replace <MasterTemplate_id> in the URL with an actual Record ID
# your data — fill in required fields
curl -X PUT "https://full-stack-blueprint.base44.app/api/entities/MasterTemplate/<MasterTemplate_id>" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '{}'
```
### `DELETE /entities/MasterTemplate/{MasterTemplate_id}`
Delete a MasterTemplate record
Soft-deletes the record. Use the restore endpoint to undo.
**Parameters:**
- `MasterTemplate_id` (path): Record ID
```bash
# Replace <MasterTemplate_id> in the URL with an actual Record ID
curl -X DELETE "https://full-stack-blueprint.base44.app/api/entities/MasterTemplate/<MasterTemplate_id>" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json"
```
### `PUT /entities/MasterTemplate/{MasterTemplate_id}/restore`
Restore a deleted MasterTemplate record
**Parameters:**
- `MasterTemplate_id` (path): Record ID
```bash
# Replace <MasterTemplate_id> in the URL with an actual Record ID
curl -X PUT "https://full-stack-blueprint.base44.app/api/entities/MasterTemplate/<MasterTemplate_id>/restore" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json"
```
## Category
### Schema
| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `name` | string | Yes | Category name |
| `description` | string | | Optional description of the category |
| `color` | string | | Hex color used for the category swatch |
| `id` | string | | Unique record identifier |
| `created_date` | string | | Record creation timestamp |
| `updated_date` | string | | Record last update timestamp |
| `created_by_id` | string | | ID of the user who created the record |
### Endpoints
### `GET /entities/Category`
List Category records
Retrieve a list of Category records with optional filtering, sorting, and pagination.
**Parameters:**
- `q` (query): JSON query filter, e.g. {"status":"active"}
- `limit` (query): Maximum number of records to return
- `skip` (query): Number of records to skip (pagination)
- `sort_by` (query): Field name to sort by. Prefix with '-' for descending order, e.g. -created_date
```bash
curl -X GET "https://full-stack-blueprint.base44.app/api/entities/Category" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json"
```
### `POST /entities/Category`
Create a Category record
```bash
curl -X POST "https://full-stack-blueprint.base44.app/api/entities/Category" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '{"name":"Example name"}'
```
### `DELETE /entities/Category`
Delete multiple Category records
**Warning:** Passing an empty `{}` query will delete ALL records in this entity.
```bash
# WARNING: passing an empty {} query will delete ALL records
curl -X DELETE "https://full-stack-blueprint.base44.app/api/entities/Category" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '{"name":"Example name"}'
```
### `POST /entities/Category/bulk`
Bulk create Category records
```bash
curl -X POST "https://full-stack-blueprint.base44.app/api/entities/Category/bulk" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '[{"name":"Example name"}]'
```
### `PUT /entities/Category/bulk`
Bulk update Category records
Each item must include an 'id' field along with the fields to update.
```bash
curl -X PUT "https://full-stack-blueprint.base44.app/api/entities/Category/bulk" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '[{"id":"<record_id>","name":"Example name"}]'
```
### `PATCH /entities/Category/update-many`
Update many Category records by query
Update multiple records matching a query filter. Supports MongoDB update operators ($set, $inc, $push, $pull).
```bash
curl -X PATCH "https://full-stack-blueprint.base44.app/api/entities/Category/update-many" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '{"query":{"name":"Example name"},"data":{"$set":{"name":"Example name"}}}'
```
### `GET /entities/Category/{Category_id}`
Get a Category record by ID
**Parameters:**
- `Category_id` (path): Record ID
```bash
# Replace <Category_id> in the URL with an actual Record ID
curl -X GET "https://full-stack-blueprint.base44.app/api/entities/Category/<Category_id>" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json"
```
### `PUT /entities/Category/{Category_id}`
Update a Category record
**Parameters:**
- `Category_id` (path): Record ID
```bash
# Replace <Category_id> in the URL with an actual Record ID
# your data — fill in required fields
curl -X PUT "https://full-stack-blueprint.base44.app/api/entities/Category/<Category_id>" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '{}'
```
### `DELETE /entities/Category/{Category_id}`
Delete a Category record
Soft-deletes the record. Use the restore endpoint to undo.
**Parameters:**
- `Category_id` (path): Record ID
```bash
# Replace <Category_id> in the URL with an actual Record ID
curl -X DELETE "https://full-stack-blueprint.base44.app/api/entities/Category/<Category_id>" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json"
```
### `PUT /entities/Category/{Category_id}/restore`
Restore a deleted Category record
**Parameters:**
- `Category_id` (path): Record ID
```bash
# Replace <Category_id> in the URL with an actual Record ID
curl -X PUT "https://full-stack-blueprint.base44.app/api/entities/Category/<Category_id>/restore" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json"
```
## ActivityLog
### Schema
| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `action` | `create`, `update`, `delete`, `bulk_update`, `bulk_delete` | Yes | The type of operation performed |
| `entity_id` | string | | ID of the affected template, if applicable |
| `entity_name` | string | | Name snapshot of the affected template |
| `summary` | string | Yes | Human-readable description of the activity |
| `id` | string | | Unique record identifier |
| `created_date` | string | | Record creation timestamp |
| `updated_date` | string | | Record last update timestamp |
| `created_by_id` | string | | ID of the user who created the record |
### Endpoints
### `GET /entities/ActivityLog`
List ActivityLog records
Retrieve a list of ActivityLog records with optional filtering, sorting, and pagination.
**Parameters:**
- `q` (query): JSON query filter, e.g. {"status":"active"}
- `limit` (query): Maximum number of records to return
- `skip` (query): Number of records to skip (pagination)
- `sort_by` (query): Field name to sort by. Prefix with '-' for descending order, e.g. -created_date
```bash
curl -X GET "https://full-stack-blueprint.base44.app/api/entities/ActivityLog" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json"
```
### `POST /entities/ActivityLog`
Create a ActivityLog record
```bash
curl -X POST "https://full-stack-blueprint.base44.app/api/entities/ActivityLog" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '{"action":"create","summary":"Example summary"}'
```
### `DELETE /entities/ActivityLog`
Delete multiple ActivityLog records
**Warning:** Passing an empty `{}` query will delete ALL records in this entity.
```bash
# WARNING: passing an empty {} query will delete ALL records
curl -X DELETE "https://full-stack-blueprint.base44.app/api/entities/ActivityLog" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '{"action":"create"}'
```
### `POST /entities/ActivityLog/bulk`
Bulk create ActivityLog records
```bash
curl -X POST "https://full-stack-blueprint.base44.app/api/entities/ActivityLog/bulk" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '[{"action":"create","summary":"Example summary"}]'
```
### `PUT /entities/ActivityLog/bulk`
Bulk update ActivityLog records
Each item must include an 'id' field along with the fields to update.
```bash
curl -X PUT "https://full-stack-blueprint.base44.app/api/entities/ActivityLog/bulk" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '[{"id":"<record_id>","action":"create","summary":"Example summary"}]'
```
### `PATCH /entities/ActivityLog/update-many`
Update many ActivityLog records by query
Update multiple records matching a query filter. Supports MongoDB update operators ($set, $inc, $push, $pull).
```bash
curl -X PATCH "https://full-stack-blueprint.base44.app/api/entities/ActivityLog/update-many" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '{"query":{"action":"create"},"data":{"$set":{"action":"create"}}}'
```
### `GET /entities/ActivityLog/{ActivityLog_id}`
Get a ActivityLog record by ID
**Parameters:**
- `ActivityLog_id` (path): Record ID
```bash
# Replace <ActivityLog_id> in the URL with an actual Record ID
curl -X GET "https://full-stack-blueprint.base44.app/api/entities/ActivityLog/<ActivityLog_id>" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json"
```
### `PUT /entities/ActivityLog/{ActivityLog_id}`
Update a ActivityLog record
**Parameters:**
- `ActivityLog_id` (path): Record ID
```bash
# Replace <ActivityLog_id> in the URL with an actual Record ID
# your data — fill in required fields
curl -X PUT "https://full-stack-blueprint.base44.app/api/entities/ActivityLog/<ActivityLog_id>" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '{}'
```
### `DELETE /entities/ActivityLog/{ActivityLog_id}`
Delete a ActivityLog record
Soft-deletes the record. Use the restore endpoint to undo.
**Parameters:**
- `ActivityLog_id` (path): Record ID
```bash
# Replace <ActivityLog_id> in the URL with an actual Record ID
curl -X DELETE "https://full-stack-blueprint.base44.app/api/entities/ActivityLog/<ActivityLog_id>" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json"
```
### `PUT /entities/ActivityLog/{ActivityLog_id}/restore`
Restore a deleted ActivityLog record
**Parameters:**
- `ActivityLog_id` (path): Record ID
```bash
# Replace <ActivityLog_id> in the URL with an actual Record ID
curl -X PUT "https://full-stack-blueprint.base44.app/api/entities/ActivityLog/<ActivityLog_id>/restore" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json"
```
## User
### Schema
| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `email` | string | Yes | The email of the user |
| `full_name` | string | Yes | The full name of the user |
| `role` | `admin`, `user` | Yes | The role of the user in the app |
| `id` | string | | Unique record identifier |
| `created_date` | string | | Record creation timestamp |
| `updated_date` | string | | Record last update timestamp |
| `created_by_id` | string | | ID of the user who created the record |
### Endpoints
### `GET /entities/User`
List User records
Retrieve a list of User records with optional filtering, sorting, and pagination.
**Parameters:**
- `q` (query): JSON query filter, e.g. {"status":"active"}
- `limit` (query): Maximum number of records to return
- `skip` (query): Number of records to skip (pagination)
- `sort_by` (query): Field name to sort by. Prefix with '-' for descending order, e.g. -created_date
```bash
curl -X GET "https://full-stack-blueprint.base44.app/api/entities/User" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json"
```
### `POST /entities/User`
Create a User record
```bash
curl -X POST "https://full-stack-blueprint.base44.app/api/entities/User" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '{"email":"Example email","full_name":"Example full_name","role":"admin"}'
```
### `GET /entities/User/{User_id}`
Get a User record by ID
**Parameters:**
- `User_id` (path): Record ID
```bash
# Replace <User_id> in the URL with an actual Record ID
curl -X GET "https://full-stack-blueprint.base44.app/api/entities/User/<User_id>" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json"
```
### `PUT /entities/User/{User_id}`
Update a User record
**Parameters:**
- `User_id` (path): Record ID
```bash
# Replace <User_id> in the URL with an actual Record ID
# your data — fill in required fields
curl -X PUT "https://full-stack-blueprint.base44.app/api/entities/User/<User_id>" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json" \
-d '{}'
```
### `DELETE /entities/User/{User_id}`
Delete a User record
Soft-deletes the record. Use the restore endpoint to undo.
**Parameters:**
- `User_id` (path): Record ID
```bash
# Replace <User_id> in the URL with an actual Record ID
curl -X DELETE "https://full-stack-blueprint.base44.app/api/entities/User/<User_id>" \
-H "api_key: 4977cc7ef0ab4e93901261c177e4584e" \
-H "Content-Type: application/json"
```
</div>