mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-17 04:32:15 +01:00
chore: add 503 to every endpoint as this is a known error
As detailed on the website documentation.
This commit is contained in:
committed by
Julien Neuhart
parent
02923fe9ce
commit
fd0ff633e6
@@ -79,6 +79,8 @@ paths:
|
|||||||
$ref: '#/components/responses/SuccessfulPDF'
|
$ref: '#/components/responses/SuccessfulPDF'
|
||||||
'400':
|
'400':
|
||||||
description: Bad Request
|
description: Bad Request
|
||||||
|
'503':
|
||||||
|
$ref: '#/components/responses/Timeout'
|
||||||
|
|
||||||
/forms/chromium/convert/html:
|
/forms/chromium/convert/html:
|
||||||
post:
|
post:
|
||||||
@@ -128,6 +130,8 @@ paths:
|
|||||||
$ref: '#/components/responses/SuccessfulPDF'
|
$ref: '#/components/responses/SuccessfulPDF'
|
||||||
'400':
|
'400':
|
||||||
description: Bad Request
|
description: Bad Request
|
||||||
|
'503':
|
||||||
|
$ref: '#/components/responses/Timeout'
|
||||||
|
|
||||||
/forms/chromium/convert/markdown:
|
/forms/chromium/convert/markdown:
|
||||||
post:
|
post:
|
||||||
@@ -181,6 +185,8 @@ paths:
|
|||||||
$ref: '#/components/responses/SuccessfulPDF'
|
$ref: '#/components/responses/SuccessfulPDF'
|
||||||
'400':
|
'400':
|
||||||
description: Bad Request
|
description: Bad Request
|
||||||
|
'503':
|
||||||
|
$ref: '#/components/responses/Timeout'
|
||||||
|
|
||||||
/forms/libreoffice/convert:
|
/forms/libreoffice/convert:
|
||||||
post:
|
post:
|
||||||
@@ -244,6 +250,8 @@ paths:
|
|||||||
$ref: '#/components/responses/SuccessfulPDF'
|
$ref: '#/components/responses/SuccessfulPDF'
|
||||||
'400':
|
'400':
|
||||||
description: Bad Request, e.g. Both 'pdfFormat' and 'nativePdfA1aFormat' form values are provided
|
description: Bad Request, e.g. Both 'pdfFormat' and 'nativePdfA1aFormat' form values are provided
|
||||||
|
'503':
|
||||||
|
$ref: '#/components/responses/Timeout'
|
||||||
|
|
||||||
/forms/pdfengines/merge:
|
/forms/pdfengines/merge:
|
||||||
post:
|
post:
|
||||||
@@ -300,6 +308,8 @@ paths:
|
|||||||
$ref: '#/components/responses/SuccessfulPDF'
|
$ref: '#/components/responses/SuccessfulPDF'
|
||||||
'400':
|
'400':
|
||||||
description: Bad Request
|
description: Bad Request
|
||||||
|
'503':
|
||||||
|
$ref: '#/components/responses/Timeout'
|
||||||
|
|
||||||
/forms/pdfengines/convert:
|
/forms/pdfengines/convert:
|
||||||
post:
|
post:
|
||||||
@@ -355,6 +365,8 @@ paths:
|
|||||||
'400':
|
'400':
|
||||||
description: >-
|
description: >-
|
||||||
Bad Request, e.g. Invalid form data: no form file found for extensions: [.pdf]; form value 'pdfFormat' is required
|
Bad Request, e.g. Invalid form data: no form file found for extensions: [.pdf]; form value 'pdfFormat' is required
|
||||||
|
'503':
|
||||||
|
$ref: '#/components/responses/Timeout'
|
||||||
|
|
||||||
components:
|
components:
|
||||||
schemas:
|
schemas:
|
||||||
@@ -727,4 +739,6 @@ components:
|
|||||||
application/pdf:
|
application/pdf:
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
format: binary
|
format: binary
|
||||||
|
Timeout:
|
||||||
|
description: Service Unavailable
|
||||||
|
|||||||
Reference in New Issue
Block a user