forked from softr-io/softr-public-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
849 lines (827 loc) · 22.9 KB
/
openapi.yaml
File metadata and controls
849 lines (827 loc) · 22.9 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
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
openapi: 3.0.0
info:
title: Softr Database API
description: |
Public API to communicate with Softr Databases. The API follows REST semantics and uses JSON to encode objects.
**Rate Limiting:**
All calls are subject to rate limiting. On exceeding the limit, you will receive a 429 HTTP Response Status Code.
- **Paid plans:** 20 calls per second per single Public API Token or Workspace.
- **Free plans:** 10 calls per second per single Public API Token or Workspace.
version: "1.0.0"
servers:
- url: https://tables-api.softr.io/api/v1
description: Production Server
tags:
- name: Databases
description: Operations related to Softr databases.
- name: Tables
description: Operations related to tables within a database.
- name: Table Fields
description: Operations to manage fields within a table.
- name: Records
description: Operations to manage records (rows) within a table.
components:
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: Softr-Api-Key
schemas:
# GENERAL
Error:
type: object
properties:
message:
type: string
description: A human-readable error message.
# DATABASES
Database:
type: object
properties:
id:
type: string
name:
type: string
description:
type: string
nullable: true
workspaceId:
type: string
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
# TABLES
TableField:
type: object
properties:
id:
type: string
name:
type: string
type:
type: string
description: "The type of the field."
enum: [SINGLE_LINE_TEXT, CHECKBOX, CURRENCY, DATETIME, DURATION, EMAIL, SELECT, NUMBER, ATTACHMENT, RATING, LINKED_RECORD, LONG_TEXT, URL, PERCENT, BUTTON, PROGRESS, PHONE, DATE_RANGE, ADDRESS, TIME, LOOKUP, ROLLUP, FORMULA, COUNT, CREATED_AT, UPDATED_AT, CREATED_BY, UPDATED_BY, AUTONUMBER, RECORD_ID, USER]
options:
type: object
description: "Configuration options for the field, specific to its type. See the official documentation for the structure of each type."
additionalProperties: true
allowMultipleEntries:
type: boolean
readonly:
type: boolean
required:
type: boolean
locked:
type: boolean
defaultValue:
type: string
nullable: true
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
Table:
type: object
properties:
id:
type: string
name:
type: string
description:
type: string
nullable: true
primaryFieldId:
type: string
defaultViewId:
type: string
fields:
type: array
items:
$ref: '#/components/schemas/TableField'
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
TableView:
type: object
properties:
id:
type: string
tableId:
type: string
name:
type: string
description:
type: string
nullable: true
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
# RECORDS
Record:
type: object
properties:
id:
type: string
tableId:
type: string
fields:
type: object
description: "A map of Field IDs to their values for this record."
additionalProperties: true
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
RecordListMetadata:
type: object
properties:
offset:
type: integer
limit:
type: integer
total:
type: integer
# FILTERING
FilterCondition:
type: object
description: "A condition for filtering records. Text-related conditions are case-insensitive."
properties:
operator:
type: string
enum: [AND, OR, IS_EMPTY, IS_NOT_EMPTY, IS_BETWEEN, IS_NOT_BETWEEN, IS, IS_NOT, GREATER_THAN, GREATER_THAN_OR_EQUALS, LESS_THAN, LESS_THAN_OR_EQUALS, CONTAINS, DOES_NOT_CONTAIN, STARTS_WITH, DOES_NOT_START_WITH, ENDS_WITH, DOES_NOT_END_WITH, IS_ONE_OF, IS_NOT_ONE_OF, HAS_ALL_OF, HAS_NONE_OF]
leftSide:
type: string
description: "The Field ID to apply the operator on."
rightSide:
description: "The value to compare against. Can be a string, number, or an array for operators like IS_ONE_OF."
oneOf:
- type: string
- type: number
- type: boolean
- type: array
items:
type: string
lowerBound:
type: string
description: "Lower bound for IS_BETWEEN operator."
upperBound:
type: string
description: "Upper bound for IS_BETWEEN operator."
conditions:
type: array
description: "Used for AND/OR operators to nest conditions."
items:
$ref: '#/components/schemas/FilterCondition'
security:
- ApiKeyAuth: []
paths:
/databases:
get:
tags:
- Databases
summary: Get Databases
description: Retrieve a list of all databases accessible to the authenticated user.
operationId: getDatabases
responses:
'200':
description: A list of databases.
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Database'
'429':
description: Rate limit exceeded.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
post:
tags:
- Databases
summary: Create a Database
description: Create a new database in the specified workspace.
operationId: createDatabase
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- workspaceId
- name
properties:
workspaceId:
type: string
name:
type: string
description:
type: string
responses:
'200':
description: The newly created database.
content:
application/json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/Database'
'429':
description: Rate limit exceeded.
/databases/{databaseId}:
parameters:
- name: databaseId
in: path
required: true
schema:
type: string
get:
tags:
- Databases
summary: Get Single Database
description: Retrieve details of a specific database by its ID.
operationId: getDatabaseById
responses:
'200':
description: Database details.
content:
application/json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/Database'
'429':
description: Rate limit exceeded.
put:
tags:
- Databases
summary: Update Database
description: Update the details of an existing database.
operationId: updateDatabase
requestBody:
content:
application/json:
schema:
type: object
properties:
name:
type: string
description:
type: string
responses:
'200':
description: The updated database.
content:
application/json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/Database'
'429':
description: Rate limit exceeded.
delete:
tags:
- Databases
summary: Delete Database
description: Delete a specific database by its ID. It can only be deleted if it is empty, unless the 'force' parameter is used.
operationId: deleteDatabase
parameters:
- name: force
in: query
schema:
type: boolean
default: false
responses:
'204':
description: Database deleted successfully.
'400':
description: Bad Request - Database is not empty and force=true was not provided.
'429':
description: Rate limit exceeded.
/databases/{databaseId}/tables:
parameters:
- name: databaseId
in: path
required: true
schema:
type: string
get:
tags:
- Tables
summary: Get Tables
description: Retrieve a list of all tables in the specified database.
operationId: getTables
responses:
'200':
description: A list of tables.
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Table'
'429':
description: Rate limit exceeded.
post:
tags:
- Tables
summary: Create Table
description: Create a new table in the specified database.
operationId: createTable
requestBody:
content:
application/json:
schema:
type: object
properties:
name:
type: string
description:
type: string
primaryFieldName:
type: string
fields:
type: array
items:
type: object
properties:
name:
type: string
type:
type: string
options:
type: object
additionalProperties: true
responses:
'200':
description: The newly created table.
content:
application/json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/Table'
'429':
description: Rate limit exceeded.
/databases/{databaseId}/tables/{tableId}:
parameters:
- name: databaseId
in: path
required: true
schema:
type: string
- name: tableId
in: path
required: true
schema:
type: string
get:
tags:
- Tables
summary: Get Single Table
description: Retrieve details of a specific table by its ID.
operationId: getTableById
responses:
'200':
description: Table details.
content:
application/json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/Table'
'429':
description: Rate limit exceeded.
put:
tags:
- Tables
summary: Update Table
description: Update a table's name and/or description. To modify fields, use the field-specific endpoints.
operationId: updateTable
requestBody:
content:
application/json:
schema:
type: object
properties:
name:
type: string
description:
type: string
responses:
'200':
description: The updated table.
content:
application/json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/Table'
'429':
description: Rate limit exceeded.
delete:
tags:
- Tables
summary: Delete Table
description: Delete a specific table by its ID. It can only be deleted if it is empty, unless the 'force' parameter is used.
operationId: deleteTable
parameters:
- name: force
in: query
schema:
type: boolean
default: false
responses:
'204':
description: Table deleted successfully.
'400':
description: Bad Request - Table is not empty and force=true was not provided.
'429':
description: Rate limit exceeded.
/databases/{databaseId}/tables/{tableId}/views:
parameters:
- name: databaseId
in: path
required: true
schema:
type: string
- name: tableId
in: path
required: true
schema:
type: string
get:
tags:
- Tables
summary: Get Table Views
description: Retrieve a list of views for a specific table.
operationId: getTableViews
responses:
'200':
description: A list of table views.
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/TableView'
'429':
description: Rate limit exceeded.
/databases/{databaseId}/tables/{tableId}/fields:
parameters:
- name: databaseId
in: path
required: true
schema:
type: string
- name: tableId
in: path
required: true
schema:
type: string
post:
tags:
- Table Fields
summary: Add Table Field
description: Add a new field to a table.
operationId: addTableField
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- name
- type
properties:
name:
type: string
type:
type: string
options:
type: object
additionalProperties: true
responses:
'200':
description: The newly created field.
content:
application/json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/TableField'
'429':
description: Rate limit exceeded.
/databases/{databaseId}/tables/{tableId}/fields/{fieldId}:
parameters:
- name: databaseId
in: path
required: true
schema:
type: string
- name: tableId
in: path
required: true
schema:
type: string
- name: fieldId
in: path
required: true
schema:
type: string
get:
tags:
- Table Fields
summary: Get Table Field
description: Retrieve details of a specific field.
operationId: getTableField
responses:
'200':
description: Field details.
content:
application/json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/TableField'
'429':
description: Rate limit exceeded.
put:
tags:
- Table Fields
summary: Update Table Field
description: Update the properties of a specific field.
operationId: updateTableField
requestBody:
content:
application/json:
schema:
type: object
properties:
name:
type: string
type:
type: string
options:
type: object
additionalProperties: true
responses:
'200':
description: The updated field.
content:
application/json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/TableField'
'429':
description: Rate limit exceeded.
delete:
tags:
- Table Fields
summary: Delete Table Field
description: Delete a specific field from a table.
operationId: deleteTableField
responses:
'204':
description: Field deleted successfully.
'429':
description: Rate limit exceeded.
/databases/{databaseId}/tables/{tableId}/records:
parameters:
- name: databaseId
in: path
required: true
schema:
type: string
- name: tableId
in: path
required: true
schema:
type: string
get:
tags:
- Records
summary: Get Records
description: Retrieve a list of all records in the specified table.
operationId: getRecords
parameters:
- name: offset
in: query
schema:
type: integer
default: 0
- name: limit
in: query
schema:
type: integer
default: 10
responses:
'200':
description: A paginated list of records.
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Record'
metadata:
$ref: '#/components/schemas/RecordListMetadata'
'429':
description: Rate limit exceeded.
post:
tags:
- Records
summary: Create Record
description: Create a new record in the specified table.
operationId: createRecord
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
fields:
type: object
description: "A map of Field IDs to their values."
additionalProperties: true
responses:
'200':
description: The newly created record.
content:
application/json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/Record'
'429':
description: Rate limit exceeded.
/databases/{databaseId}/tables/{tableId}/records/search:
parameters:
- name: databaseId
in: path
required: true
schema:
type: string
- name: tableId
in: path
required: true
schema:
type: string
post:
tags:
- Records
summary: Search Records
description: Search for records in the specified table based on filter, sort, and pagination criteria.
operationId: searchRecords
requestBody:
content:
application/json:
schema:
type: object
properties:
filter:
$ref: '#/components/schemas/FilterCondition'
sort:
type: object
description: "Sorting criteria (structure not fully specified in docs)."
paging:
type: object
properties:
offset:
type: integer
default: 0
limit:
type: integer
default: 10
responses:
'200':
description: A paginated list of matching records.
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Record'
metadata:
$ref: '#/components/schemas/RecordListMetadata'
'429':
description: Rate limit exceeded.
/databases/{databaseId}/tables/{tableId}/records/{recordId}:
parameters:
- name: databaseId
in: path
required: true
schema:
type: string
- name: tableId
in: path
required: true
schema:
type: string
- name: recordId
in: path
required: true
schema:
type: string
get:
tags:
- Records
summary: Get Single Record
description: Retrieve details of a specific record by its ID.
operationId: getRecordById
responses:
'200':
description: Record details.
content:
application/json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/Record'
'429':
description: Rate limit exceeded.
patch:
tags:
- Records
summary: Update Record
description: Partially update a specific record by its ID. Only the fields provided in the request body will be changed.
operationId: updateRecord
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
fields:
type: object
description: "A map of Field IDs to their new values."
additionalProperties: true
responses:
'200':
description: The updated record.
content:
application/json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/Record'
'429':
description: Rate limit exceeded.
delete:
tags:
- Records
summary: Delete Record
description: Delete a specific record by its ID.
operationId: deleteRecord
responses:
'204':
description: Record deleted successfully.
'429':
description: Rate limit exceeded.