-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi_draft.yml
More file actions
748 lines (712 loc) · 24.5 KB
/
openapi_draft.yml
File metadata and controls
748 lines (712 loc) · 24.5 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
openapi: 3.0.0
info:
title: FileForge API
description: FileForge API for document operations.
version: 0.1.0
components:
securitySchemes:
basicAuth:
type: http
scheme: basic
apiKey:
type: apiKey
name: X-API-Key
in: header
schemas:
def-0:
type: object
required:
- statusCode
- code
- message
description: Generic error response schema
properties:
statusCode:
type: number
description: The HTTP status code
example: 400
code:
type: string
description: A machine-readable error code
example: BAD_REQUEST
message:
type: string
description: A human-readable message. This field may also provide additional
context to the error code.
example: Bad request
title: ErrorSchema
paths:
/status/:
get:
operationId: getStatus
description: Get the status of the API
x-fern-availability: generally-available
responses:
"200":
description: Default Response
content:
application/json:
schema:
type: object
properties:
status:
type: string
/pdf/docx/:
post:
operationId: convertDOCXtoPDF
summary: Converts a DOC or DOCX document to PDF.
tags:
- PDF
description: >-
Converts a Microsoft Word document (.DOCX or .DOC) file to a PDF
document.
This service uses a LibreOffice headless server to perform the
conversion, and may not support all features of the original document.
**Known discrepancies**
* Some fonts may not be available in the server, and may be substituted
by a closest match.
* Some complex formatting may not be preserved, such as background
graphics.
**Variables**
Variable replacement is supported with various methods:
* Templated litterals: `{{name}}`
* Word variables, as listed in the document metadata: `{DOCVARIABLE
"name"}`
To enable variable replacement as Word variables for your account,
please contact the FileForge support.
requestBody:
content:
multipart/form-data:
schema:
type: object
required:
- file
properties:
options:
description: >-
Conversion options. This field is required even if empty.
**Options**
* `templateLiterals`: Map of template literals to replace in
the document. Template literals should be enclosed in double
curly braces, e.g. `{{name}}`. Variables name can contain
alphanumeric characters and hyphens. All variables are
case-sensitive. The value for each variable should be a
string. If a value of undefined is passed, the variable will
not be removed from the document. If you need to remove a
variable, pass an empty string as the value.
**NB** variables should **not** have surrounding spaces,
e.g. `{{ name }}`.
**Example**
In the Word document: `{{name}} {{nickname}}. was born on
{{date}}.`
```json
{
"templateLiterals": {
"name": "John Doe",
"date": "2021-12-31",
"nickname": ""
}
}
```
There will not be an error if a variable is not found in the
document, nor if variables found in the document are not in
the options.
type: object
properties:
keepOriginalStyles:
type: boolean
description: Whether to keep the text formatting of the variables in the
document. Default is true.
templateLiterals:
type: object
description: Map of template literals to replace in the document.
additionalProperties:
type: string
file:
description: The Microsoft Word document (.DOCX or .DOC) file to convert to PDF.
type: string
format: binary
encoding:
options:
contentType: application/json
required: true
security:
- apiKey: []
x-fern-sdk-group-name:
- pdf
x-fern-sdk-method-name: fromDocx
x-fern-availability: beta
responses:
"201":
description: PDF Document generated successfully
content:
application/pdf:
schema:
type: string
format: binary
"400":
description: Bad request
content:
application/json:
schema:
description: Bad request
$ref: "#/components/schemas/def-0"
"401":
description: Unauthorized
content:
application/json:
schema:
description: Unauthorized
$ref: "#/components/schemas/def-0"
"500":
description: Internal server error
/pdf/generate/:
post:
operationId: generatePDFDocument
summary: Generates a PDF document from HTML and web technologies.
tags:
- PDF
description: Generates a PDF document from web assets.
requestBody:
content:
multipart/form-data:
schema:
type: object
required:
- files
properties:
options:
description: Conversion options. This field is required even if empty.
type: object
properties:
test:
type: boolean
description: Generate a test document instead of a production document. The
generated document will contain a watermark. Defaults to
true.
default: true
host:
type: boolean
description: If enabled, the document will be hosted by FileForge and a
presigned URL will be returned.
default: false
expiresAt:
type: string
format: date-time
description: If host is enabled, the expiration date of the presigned URL.
Defaults to 7 days from now. Cannot exceed 7 days from
now.
fileName:
type: string
description: The name of the generated PDF file. Defaults to document. The file
name should not contain extensions nor path traversals.
default: document
files:
description: >-
Files to generate the PDF document from.
An `index.html` file is required, and will be used as the
main document. Other documents may also be attached, such as
stylesheets or images. The path in the `filename` part of
the multipart attachement will be respected during
generation.
**Important notice**: during generation, the `index.html`
file will be processed to include the base URL of the
document. This is required for assets to be loaded
correctly. To link your assets from the HTML file, you
should not use a leading slash in the URL. For example, use
`<img src="image.jpg" />` instead of `<img src="/image.jpg"
/>`.
allOf:
- {}
- type: array
items:
type: string
format: binary
encoding:
options:
contentType: application/json
required: true
security:
- apiKey: []
x-fern-sdk-group-name:
- pdf
x-fern-sdk-method-name: generate
x-fern-availability: generally-available
responses:
"201":
description: PDF Document generated successfully
content:
application/pdf:
schema:
type: string
format: binary
application/json:
schema:
type: object
required:
- url
properties:
url:
type: string
format: uri
description: URL to the generated PDF document
"400":
description: Bad request
content:
application/json:
schema:
description: Bad request
$ref: "#/components/schemas/def-0"
"401":
description: Unauthorized
content:
application/json:
schema:
description: Unauthorized
$ref: "#/components/schemas/def-0"
"500":
description: Internal server error
"502":
description: Bad Gateway
content:
application/json:
schema:
description: Bad Gateway
$ref: "#/components/schemas/def-0"
/pdf/merge/:
post:
operationId: mergePDFDocuments
tags:
- PDF
description: Merges multiple PDF documents into a single PDF document.
requestBody:
content:
multipart/form-data:
schema:
type: object
required:
- files
properties:
options:
type: object
properties: {}
files:
allOf:
- {}
- type: array
items:
type: string
format: binary
encoding:
options:
contentType: application/json
required: true
security:
- apiKey: []
x-fern-sdk-group-name:
- pdf
x-fern-sdk-method-name: merge
x-fern-availability: generally-available
responses:
"201":
description: PDF Document generated successfully
content:
application/pdf:
schema:
type: string
format: binary
"400":
description: Bad request
content:
application/json:
schema:
description: Bad request
$ref: "#/components/schemas/def-0"
"401":
description: Unauthorized
content:
application/json:
schema:
description: Unauthorized
$ref: "#/components/schemas/def-0"
"500":
description: Internal server error
/pdf/form/detect/:
post:
operationId: detectPDFFormFields
summary: Detect form fields in a PDF document
tags:
- PDF
- form
description: Returns a list of form fields detected in the PDF document, along
with their location, options and requirements. For a more visual
representation, use the /pdf/form/mark endpoint.
requestBody:
content:
multipart/form-data:
schema:
type: object
required:
- file
properties:
options:
type: object
properties: {}
file:
type: string
format: binary
encoding:
options:
contentType: application/json
required: true
security:
- apiKey: []
x-fern-sdk-group-name:
- pdf
- form
x-fern-sdk-method-name: detect
x-fern-availability: beta
responses:
"200":
description: Document fields detected successfully
content:
application/json:
schema:
description: Document fields detected successfully
type: array
items:
type: object
properties:
name:
type: string
required:
type: boolean
readOnly:
type: boolean
locations:
type: array
items:
type: object
properties:
x:
type: number
y:
type: number
width:
type: number
height:
type: number
required:
- x
- y
- width
- height
required:
- name
- type
- required
- readOnly
- locations
anyOf:
- type: object
properties:
type:
type: string
enum:
- PDFCheckBox
isChecked:
type: boolean
required:
- type
- type: object
properties:
type:
type: string
enum:
- PDFDropdown
- PDFOptionList
options:
type: array
items:
type: string
isMultiselect:
type: boolean
selected:
type: array
items:
type: string
isEditable:
type: boolean
required:
- type
- type: object
properties:
type:
type: string
enum:
- PDFRadioGroup
options:
type: array
items:
type: string
selected:
type: string
isMutuallyExclusive:
type: boolean
isOffToggleable:
type: boolean
required:
- type
- type: object
properties:
type:
type: string
enum:
- PDFTextField
defaultValue:
type: string
isPassword:
type: boolean
isRichFormatted:
type: boolean
isScrollable:
type: boolean
isCombed:
type: boolean
isMultiline:
type: boolean
isFileSelector:
type: boolean
maxLength:
type: number
required:
- type
"400":
description: Bad request
content:
application/json:
schema:
description: Bad request
$ref: "#/components/schemas/def-0"
"401":
description: Unauthorized
content:
application/json:
schema:
description: Unauthorized
$ref: "#/components/schemas/def-0"
"500":
description: Internal server error
/pdf/form/mark/:
post:
operationId: markPDFFormFields
summary: Mark form fields in a PDF document
tags:
- PDF
- form
description: Returns a modified PDF document with form fields marked with a
green border, and hover text showing the field name.
requestBody:
content:
multipart/form-data:
schema:
type: object
required:
- file
properties:
options:
type: object
properties: {}
file:
type: string
format: binary
encoding:
options:
contentType: application/json
required: true
security:
- apiKey: []
x-fern-sdk-group-name:
- pdf
- form
x-fern-sdk-method-name: mark
x-fern-availability: beta
responses:
"201":
description: Marked PDF Document generated successfully
content:
application/pdf:
schema:
type: string
format: binary
"400":
description: Bad request
content:
application/json:
schema:
description: Bad request
$ref: "#/components/schemas/def-0"
"401":
description: Unauthorized
content:
application/json:
schema:
description: Unauthorized
$ref: "#/components/schemas/def-0"
"500":
description: Internal server error
/pdf/form/fill/:
post:
operationId: fillPDFFormFields
summary: Fill form fields in a PDF document
tags:
- PDF
- form
description: Returns a modified PDF document with filled form fields. A subset
of fields can be filled.
requestBody:
content:
multipart/form-data:
schema:
type: object
required:
- file
properties:
options:
type: object
required:
- fields
properties:
fields:
type: array
description: Fields to fill or change in the PDF document.
items:
type: object
anyOf:
- type: object
required:
- name
- type
- value
properties:
name:
description: Name of the field to fill. This must match an exact name from the
PDF document. To detect all fields, use the
/pdf/form/fields endpoint, or use the
/pdf/form/mark endpoint to get an annotated
PDF with each detected field.
type: string
type:
type: string
enum:
- PDFTextField
value:
type: string
- type: object
required:
- name
- type
- checked
properties:
name:
description: Name of the field to fill. This must match an exact name from the
PDF document. To detect all fields, use the
/pdf/form/fields endpoint, or use the
/pdf/form/mark endpoint to get an annotated
PDF with each detected field.
type: string
type:
type: string
enum:
- PDFCheckBox
checked:
type: boolean
- type: object
required:
- name
- type
- selected
properties:
name:
description: Name of the field to fill. This must match an exact name from the
PDF document. To detect all fields, use the
/pdf/form/fields endpoint, or use the
/pdf/form/mark endpoint to get an annotated
PDF with each detected field.
type: string
type:
type: string
enum:
- PDFOptionList
- PDFDropdown
selected:
type: array
items:
type: string
- type: object
required:
- name
- type
- selected
properties:
name:
description: Name of the field to fill. This must match an exact name from the
PDF document. To detect all fields, use the
/pdf/form/fields endpoint, or use the
/pdf/form/mark endpoint to get an annotated
PDF with each detected field.
type: string
type:
type: string
enum:
- PDFRadioGroup
selected:
type: string
file:
type: string
format: binary
encoding:
options:
contentType: application/json
required: true
security:
- apiKey: []
x-fern-sdk-group-name:
- pdf
- form
x-fern-sdk-method-name: fill
x-fern-availability: beta
responses:
"201":
description: PDF Document filled successfully
content:
application/pdf:
schema:
type: string
format: binary
"400":
description: Bad request
content:
application/json:
schema:
description: Bad request
$ref: "#/components/schemas/def-0"
"401":
description: Unauthorized
content:
application/json:
schema:
description: Unauthorized
$ref: "#/components/schemas/def-0"
"500":
description: Internal server error
servers:
- url: https://api.fileforge.com
description: Tunnel server
- url: http://localhost:3000
description: Development server
tags:
- name: PDF
description: PDF operations
- name: form
description: PDF form operations