webPDF (10.0.0.3659)
Download OpenAPI specification:Download
This is the REST API description for the webPDF server.
You can find out more about webPDF at https://www.webpdf.de
API authorization
The WebPDF API web service endpoints are protected and require authorization for access. The authorization is in the form of an authorization token called an "access token".
Such a token authorizes the use of the API and can be issued in two ways:
- the built-in authentication process using
POST /authentication/user/login
, which authenticates a user with credentials and issues an access token, or - via an external OAuth2 provider that issues an OAuth token (a JWT based "access token") that can be validated by the server during the API call.
The server (or API) can use both paths in parallel, or individual ones can be turned on or off.
The integrated (local) authorization is available without configuration, while the use of OAuth2 tokens must first be configured in the server.
User authentication
To use local authorization, a user must be authenticated against a user source. Such a user source can be, for example, the integrated user database or an LDAP/AD server.
To authenticate use the POST /authentication/user/login
call below in the Authentication group with a username and password. This will return a JSON response with access token as property token
.
It is also possible to authenticate as an anonymous user by calling POST /authentication/user/login
without user credentials. Note: This feature can be disabled via the configuration for the local authorization provider.
Access token (endpoint authorization)
All API calls (web service endpoints) require an access token for authorization. The access token is passed to the endpoint in the Authorization
header as Bearer: [access token]
.
The access token can be the token provided via the local authorization provider (via POST /authentication/user/login
) or an OAuth2 JWT (JSON Web Token) provided by an external authorization provider.
Omitting this header or supplying an invalid token results in an error 401 Unauthorized
.
Refresh token (session renew)
When the local authorization provider issues an access token, a second token, called a refresh token, is also issued. This token is referenced as refreshToken
in the JSON response when POST /authentication/user/login
is used.
This token allows a new access token to be issued before the token and the associated session (see Session below) expires. With POST /authentication/user/refresh
the refresh token can be 'exchanged' for a new access token and a new refresh token. This prevents the access token from expiring and terminating an active session.
Session
The REST API of this server is a stateful session based API.
Whenever an access token is issued by the local authorization provider is issued or an externally issued OAuth2 token is used with the API, a new session is created for the token.
This session retains all documents (see Document storage below) and user settings until the session expires or an explicit logout (GET /authentication/user/logout
) is invoked.
Document storage
A document is uploaded to the server with POST /documents
and is stored in the document storage of the server. The document storage is always assigned to a session (see "Session" above).
A unique ID documentID
will be created for the uploaded file as reference. As the result of the upload the DocumentFile
is fetched via 303 See Other
from GET /documents/{documentId}/info
. The document
information DocumentFile
contains the document ID in the field documentId
. Most API calls in /documents/...
and most call which work on documents (e.g. /converter/{documentId}
or /pdfa/{documentId}
) require the ID to reference
a document. The documentID
can also be fetched from the list returned by GET /documents/list
.
Experimental Web services
Web services marked with experimental are subject to change at any time and without notice! These web services usually provide new features that are not yet finally implemented.
Try it out (Swagger UI only)
You can call the web service API online via the documentation by pressing the 'Try it out' button for each call. For this you need an authorization in the form of an access token.
To obtain an access token, use POST /authentication/user/login
, click on the "lock" icon, enter the user credentials and select "Authorize". Execute the login via the "'Try it out'" button and then via the "'Execute'" button.
Click the 'Authorize' button below and enter the access token at BearerAuth
and click 'Authorize'.
Alternatively, you can enter the access token using the "lock" icon above each individual call.
Gets information about the certificates in the user session.
Returns information about the keystores available in the user session and the certificates they contain. Certificates can be provided via user authentication (e.g. LDAP) or from the server's local file system (e.g. user or global keystores). The keystore may be locked and can be unlocked with PUT /authentication/user/certificates/passwords/...
.
Authorizations:
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url https://portal.webpdf.de/webPDF/rest/authentication/user/certificates \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 200
- 401
{- "certificates": [
- {
- "aliasName": "",
- "certificate": "",
- "hasPrivateKey": false,
- "isPrivateKeyReadable": false,
- "keyStoreName": "",
- "keyStoreOrigin": "global"
}
], - "keyStores": [
- {
- "isKeyStoreAccessible": false,
- "keyStoreName": "",
- "keyStoreOrigin": "global"
}
]
}
Allows updating passwords for a keystore.
Allows updating the passwords required to open a keystore and access the private keys in the user session keystore.
Authorizations:
path Parameters
keyStoreName required | string Name of the keystore for which the passwords should be updated. |
Request Body schema: application/jsonrequired
Password information for accessing the keystore and the entries in the keystore.
object | |
keyStorePassword | string Default: "" |
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "aliases": {
- "property1": "string",
- "property2": "string"
}, - "keyStorePassword": ""
}
Response samples
- 200
- 400
- 401
{- "certificates": [
- {
- "aliasName": "",
- "certificate": "",
- "hasPrivateKey": false,
- "isPrivateKeyReadable": false,
- "keyStoreName": "",
- "keyStoreOrigin": "global"
}
], - "keyStores": [
- {
- "isKeyStoreAccessible": false,
- "keyStoreName": "",
- "keyStoreOrigin": "global"
}
]
}
Gets information about a user in the session
Returns information about the user in the session.
Authorizations:
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url https://portal.webpdf.de/webPDF/rest/authentication/user/info \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 200
- 401
{- "isAdmin": false,
- "isUser": true,
- "roles": [
- "string"
], - "uniqueId": "",
- "userLimits": {
- "diskSpaceLimit": 0,
- "maxFiles": 0,
- "type": "",
- "uploadLimit": 0
}, - "userName": ""
}
Authenticates a user, initiates a session and returns a authorization token Deprecated
DEPRECATED: Please use POST /authentication/user/login
instead.
Authenticates a user by user name
and password
as a named user or as an anonymous user if both parameters are omitted. If successful, an access token is returned in the JSON response as property token
. User credentials (user name
and password
) must be passed in HTTP header field Authorization: Basic [BASE64]
or omitted for anonymous authentication.
Authorizations:
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url https://portal.webpdf.de/webPDF/rest/authentication/user/login
Response samples
- 200
- 401
{- "expiresIn": 0,
- "refreshToken": "",
- "token": ""
}
Authenticates a user, initiates a session and returns a authorization token
Authenticates a user by user name
and password
as a named user or as an anonymous user if both parameters are omitted. If successful, an access token is returned in the JSON response as property token
. User credentials (user name
and password
) must be passed in HTTP header field Authorization: Basic [BASE64]
or omitted for anonymous authentication.
Authorizations:
Request Body schema: application/json
Settings for the login request
createRefreshToken | boolean Default: false If enabled (true), a refresh token is also created. |
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "createRefreshToken": false
}
Response samples
- 200
- 401
{- "expiresIn": 0,
- "refreshToken": "",
- "token": ""
}
Logs off a user, deletes the session and all assigned tokens
Logs off the user, deletes the user session and invalidates all tokens (access and refresh token). After the call, access to the session is no longer possible. The access token is passed in as HTTP header field Authorization: Bearer [access token]
. Important: You can use the locally provided access token or an OAuth2 token to end the session.
Authorizations:
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url https://portal.webpdf.de/webPDF/rest/authentication/user/logout \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 401
{- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}
Updates a user session with the provided refresh token
Refreshes a user session and prevents the session from expiring. Exchanges the specified refresh token for a new set of tokens (access and refresh token). The refresh token is passed in as HTTP header field Authorization: Bearer [refresh token]
. Important: Only locally provisioned refresh tokens work. Externally issued OAuth2 tokens cannot be refreshed.
Authorizations:
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request POST \ --url https://portal.webpdf.de/webPDF/rest/authentication/user/refresh \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 200
- 401
{- "expiresIn": 0,
- "refreshToken": "",
- "token": ""
}
Uploads a document to the document storage
Uploads a document and stores it in the server´s document storage, assigning it a referencable documentID
.
- The returned document information
DocumentFile
contains the created ID in the fielddocumentId
. - The document information
DocumentFile
is fetched via303 See Other
fromGET /documents/{documentId}/info
.
Authorizations:
query Parameters
history | boolean Default: false When set to true and whenever the document is manipulated, a history entry will be created and stored. This allows to revert such changes later. |
Request Body schema: multipart/form-data
filedata | string <binary> The document to upload, as binary data bytes. |
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request POST \ --url 'https://portal.webpdf.de/webPDF/rest/documents?history=SOME_BOOLEAN_VALUE' \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \ --header 'content-type: multipart/form-data' \ --form filedata=string
Response samples
- 200
- 400
- 401
{- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
Compresses the selected documents from the document storage into a new archive document.
Compresses a list of documents from the document storage selected by documentId
or a file filter into a new archive document.
- The list of documents that should be in the archive are selected via the
documentId
or a file filter. - The selection specifications can be made individually or together and act additively in the order
documentId
and then file filter. - If the id is invalid for documents selected via
documentId
or documents are locked, then the call is aborted with an error. - Depending on the
storeArchive
(defaulttrue
) flag in the body of the request, the created archive is stored in the document storage or created as a temporary archive. - Depending on the
accept
header, the created archive itself is returned as binary data or the file information about the archive.
Authorizations:
header Parameters
Request Body schema: application/jsonrequired
The settings for creating the archive document and for selecting and filtering the documents to be added to the archive.
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "archiveFileName": "archive.zip",
- "documentIdList": [
- "string"
], - "fileFilter": {
- "excludeRules": [
- {
- "rulePattern": "",
- "ruleType": "suffix"
}
], - "includeRules": [
- {
- "rulePattern": "",
- "ruleType": "suffix"
}
]
}, - "storeArchive": false
}
Response samples
- 200
- 400
- 401
{- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
Returns a list of all documents in the document storage
Returns a list of all documents currently stored in the server´s document storage.
- Returns a
DocumentFile
for each document in the storage, providing further information, such as the document´s MIME type, file name,documentId
, structure etc.
Authorizations:
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url https://portal.webpdf.de/webPDF/rest/documents/list \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 200
- 400
- 401
[- {
- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
]
Returns a list of all documents in the document storage
Returns a list of all documents currently stored in the server´s document storage.
- Returns a
DocumentFile
for each document in the storage, providing further information, such as the document´s MIME type, file name,documentId
, structure etc. - The list contains only documents that have
{parentDocumentId}
as parent ID
Authorizations:
path Parameters
parentDocumentId required | string The unique |
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url https://portal.webpdf.de/webPDF/rest/documents/list/%7BparentDocumentId%7D \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 200
- 400
- 401
[- {
- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
]
Deletes the selected document from the document storage
Deletes the document selected via it´s documentId
from the server´s document storage.
- To select the document use the
documentId
returned, when uploading the document to the server´s document storage, or select adocumentId
of one of the documents returned byGET /documents/list
.
Authorizations:
path Parameters
documentId required | string The unique |
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request DELETE \ --url https://portal.webpdf.de/webPDF/rest/documents/%7BdocumentId%7D \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 400
- 401
{- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}
Returns the binary data of a document
Selects a document via it´s documentId
and returns it as a binary data stream.
- To select the document use the
documentId
returned, when uploading the document to the server´s document storage, or select adocumentId
of one of the documents returned byGET /documents/list
. - Requires a valid session token
[API token]
(see Authentication at the top of document).
Authorizations:
path Parameters
documentId required | string The unique |
query Parameters
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url 'https://portal.webpdf.de/webPDF/rest/documents/%7BdocumentId%7D?format=SOME_STRING_VALUE' \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 400
- 401
{- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}
Updates the binary data of a document in the document store
Updates the binary data of a document in the document store referenced by the DocumentID
.
If history is enabled for the document, then a new entry with the uploaded content is created.
- The returned document information
DocumentFile
contains the information for the updated document. - The document information
DocumentFile
is fetched via303 See Other
fromGET /documents/{documentId}/info
.
Authorizations:
path Parameters
documentId required | string The unique |
Request Body schema: multipart/form-data
filedata | string <binary> The document to upload, as binary data bytes. |
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request PUT \ --url https://portal.webpdf.de/webPDF/rest/documents/%7BdocumentId%7D \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \ --header 'content-type: multipart/form-data' \ --form filedata=string
Response samples
- 200
- 400
- 401
{- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
Returns the binary data of a file in an archive document
Selects an archive document via its documentId
and returns the binary data stream for a file within the archive.
- To select the archive document use the
documentId
returned, when uploading the document to the server´s document storage, or select adocumentId
of one of the documents returned byGET /documents/list
. - The referenced document must be an archive in a supported format
- The
archivePath
must refer to a file within the archive. Wildcards are not supported. - Requires a valid session token
[API token]
(see Authentication at the top of document).
Authorizations:
path Parameters
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url https://portal.webpdf.de/webPDF/rest/documents/%7BdocumentId%7D/archive//folder/file.txt \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 400
- 401
{- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}
Extracts the selected archive document in the document storage.
Extracts a document selected by the documentId
in the document storage.
- The document referenced by
documentId
must be a valid archive. If not, the operation will be aborted. - For each file in the archive, a new
DocumentFile
is created in the document storage with a newdocumentId
. - Each newly created
DocumentFile
holds asparentDocumentId
thedocumentId
of the archive.
Authorizations:
path Parameters
documentId required | string The unique |
Request Body schema: application/jsonrequired
The settings for unpacking the archive document
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "fileFilter": {
- "excludeRules": [
- {
- "rulePattern": "",
- "ruleType": "suffix"
}
], - "includeRules": [
- {
- "rulePattern": "",
- "ruleType": "suffix"
}
]
}
}
Response samples
- 200
- 400
- 401
[- {
- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
]
Returns a list of all history entries for a selected document
Returns the list of history information HistoryEntry
for the document selected via it´s documentId
.
- To select the document use the
documentId
returned, when uploading the document to the server´s document storage, or select adocumentId
of one of the documents returned byGET /documents/list
.
Authorizations:
path Parameters
documentId required | string The unique |
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url https://portal.webpdf.de/webPDF/rest/documents/%7BdocumentId%7D/history \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 200
- 400
- 401
[- {
- "active": false,
- "dateTime": "2022-05-16T11:30:33+0200",
- "fileName": "",
- "id": 0,
- "operation": "One of: DOCUMENT:UPLOAD, TOOLBOX:ROTATE, TOOLBOX:DELETE, TOOLBOX:SPLIT, TOOLBOX:OPTIONS, TOOLBOX:MERGE, TOOLBOX:WATERMARK, TOOLBOX:ATTACHMENT, TOOLBOX:EXTRACTION, TOOLBOX:IMAGES, TOOLBOX:FORMS, TOOLBOX:ANNOTATION, TOOLBOX:REDACT, TOOLBOX:DESCRIPTION, TOOLBOX:MOVE, TOOLBOX:OUTLINE, TOOLBOX:PORTFOLIO, TOOLBOX:ENCRYPTION, TOOLBOX:COMPRESS TOOLBOX:SCALE, PDFA, OCR, SIGNATURE"
}
]
Returns a specific history entry for a selected document
Selects and returns a specific HistoryEntry
for a document selected via it´s documentId
.
- To select the document use the
documentId
returned, when uploading the document to the server´s document storage, or select adocumentId
of one of the documents returned byGET /documents/list
. - To select the
HistoryEntry
use thehistoryId
of one of theHistoryEntry
s returned byGET /{documentId}/history
.
Authorizations:
path Parameters
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url https://portal.webpdf.de/webPDF/rest/documents/%7BdocumentId%7D/history/%7BhistoryId%7D \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 200
- 400
- 401
{- "active": false,
- "dateTime": "2022-05-16T11:30:33+0200",
- "fileName": "",
- "id": 0,
- "operation": "One of: DOCUMENT:UPLOAD, TOOLBOX:ROTATE, TOOLBOX:DELETE, TOOLBOX:SPLIT, TOOLBOX:OPTIONS, TOOLBOX:MERGE, TOOLBOX:WATERMARK, TOOLBOX:ATTACHMENT, TOOLBOX:EXTRACTION, TOOLBOX:IMAGES, TOOLBOX:FORMS, TOOLBOX:ANNOTATION, TOOLBOX:REDACT, TOOLBOX:DESCRIPTION, TOOLBOX:MOVE, TOOLBOX:OUTLINE, TOOLBOX:PORTFOLIO, TOOLBOX:ENCRYPTION, TOOLBOX:COMPRESS TOOLBOX:SCALE, PDFA, OCR, SIGNATURE"
}
Updates a specific history entry for a selected document
Updates the history entry with information from HistoryEntry
in the request body and returns the updated entry.
- To select the document use the
documentId
returned, when uploading the document to the server´s document storage, or select adocumentId
of one of the documents returned byGET /documents/list
. - To select the
HistoryEntry
use thehistoryId
of one of theHistoryEntry
s returned byGET /{documentId}/history
.
Authorizations:
path Parameters
Request Body schema: application/jsonrequired
The settings to apply to the selected history entry.
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "active": false,
- "operation": "One of: DOCUMENT:UPLOAD, TOOLBOX:ROTATE, TOOLBOX:DELETE, TOOLBOX:SPLIT, TOOLBOX:OPTIONS, TOOLBOX:MERGE, TOOLBOX:WATERMARK, TOOLBOX:ATTACHMENT, TOOLBOX:EXTRACTION, TOOLBOX:IMAGES, TOOLBOX:FORMS, TOOLBOX:ANNOTATION, TOOLBOX:REDACT, TOOLBOX:DESCRIPTION, TOOLBOX:MOVE, TOOLBOX:OUTLINE, TOOLBOX:PORTFOLIO, TOOLBOX:ENCRYPTION, TOOLBOX:COMPRESS TOOLBOX:SCALE, PDFA, OCR, SIGNATURE"
}
Response samples
- 200
- 400
- 401
{- "active": false,
- "dateTime": "2022-05-16T11:30:33+0200",
- "fileName": "",
- "id": 0,
- "operation": "One of: DOCUMENT:UPLOAD, TOOLBOX:ROTATE, TOOLBOX:DELETE, TOOLBOX:SPLIT, TOOLBOX:OPTIONS, TOOLBOX:MERGE, TOOLBOX:WATERMARK, TOOLBOX:ATTACHMENT, TOOLBOX:EXTRACTION, TOOLBOX:IMAGES, TOOLBOX:FORMS, TOOLBOX:ANNOTATION, TOOLBOX:REDACT, TOOLBOX:DESCRIPTION, TOOLBOX:MOVE, TOOLBOX:OUTLINE, TOOLBOX:PORTFOLIO, TOOLBOX:ENCRYPTION, TOOLBOX:COMPRESS TOOLBOX:SCALE, PDFA, OCR, SIGNATURE"
}
Returns information about an uploaded document
Returns information about the document selected by documentId
in the document storage, such as it´s MIME type, file name, documentId
, structure etc.
Authorizations:
path Parameters
documentId required | string The unique |
query Parameters
password | string Default: "" An optional password. (Should a password be required to access the document.) |
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url 'https://portal.webpdf.de/webPDF/rest/documents/%7BdocumentId%7D/info?password=SOME_STRING_VALUE' \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 200
- 400
- 401
{- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
Provides detailed information about an uploaded document
Returns information about the document selected by documentId
in the document storage.
Authorizations:
path Parameters
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url https://portal.webpdf.de/webPDF/rest/documents/%7BdocumentId%7D/info/%7Bdetails%7D \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 200
- 400
- 401
{- "acroFormFields": [
- {
- "dataXPath": "",
- "fullyQualifiedName": "",
- "xfaField": {
- "match": "once",
- "name": ""
}
}
], - "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "value": "string",
- "infoType": "form"
}
Updates the security information for a selected document
Updates the security information of a selected document in the server´s document storage, using the contained PdfPasswordType
as the body request parameter and returns the updated document information. You can use this to set access passwords or other security information for a document.
- The
DocumentFile
shall select the updated document via the containeddocumentId
. - To select the document use the
documentId
returned, when uploading the document to the server´s document storage, or select adocumentId
of one of the documents returned byGET /documents/list
.
Authorizations:
path Parameters
documentId required | string The unique |
Request Body schema: application/jsonrequired
The security settings to apply to the selected document.
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "keyPair": {
- "certificate": {
- "source": "value",
- "uri": "",
- "value": ""
}, - "privateKey": {
- "password": "",
- "source": "value",
- "uri": "",
- "value": ""
}
}, - "open": "",
- "permission": ""
}
Response samples
- 200
- 400
- 401
{- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
Updates the document information for a selected document
Updates the document information of a selected document in the server´s document storage, using the given DocumentFile
as body request parameter and returns the updated document information. You can use this to change the file name of a document.
- Currently only the
fileName
inDocumentFile
can be updated. - To select the document use the
documentId
returned, when uploading the document to the server´s document storage, or select adocumentId
of one of the documents returned byGET /documents/list
.
Authorizations:
path Parameters
documentId required | string The unique |
Request Body schema: application/jsonrequired
The settings to be applied to the selected document.
fileName | string Default: "" File name for the document (without extension) |
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "fileName": ""
}
Response samples
- 200
- 400
- 401
{- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
Returns the cluster status information
Returns the the status information about the cluster and all members in the cluster.
Authorizations:
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url https://portal.webpdf.de/webPDF/rest/admin/cluster/status \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 200
- 400
- 401
{- "error": {
- "code": 0,
- "description": "",
- "exitCode": 0,
- "hideException": false,
- "stackTrace": {
- "cause": {
- "localizedMessage": "",
- "message": "",
- "stackTrace": [
- {
- "classLoaderName": "string",
- "className": "string",
- "fileName": "string",
- "lineNumber": 0,
- "methodName": "string",
- "moduleName": "string",
- "moduleVersion": "string",
- "nativeMethod": true
}
]
}, - "localizedMessage": "",
- "message": "",
- "stackTrace": [
- {
- "classLoaderName": "string",
- "className": "string",
- "fileName": "string",
- "lineNumber": 0,
- "methodName": "string",
- "moduleName": "string",
- "moduleVersion": "string",
- "nativeMethod": true
}
], - "suppressed": [
- {
- "localizedMessage": "string",
- "message": "string",
- "stackTrace": [
- {
- "classLoaderName": "string",
- "className": "string",
- "fileName": "string",
- "lineNumber": 0,
- "methodName": "string",
- "moduleName": "string",
- "moduleVersion": "string",
- "nativeMethod": true
}
]
}
]
}
}, - "id": "",
- "isDemoMode": false,
- "localAddress": "",
- "maximumAllowedNodes": 0,
- "namespace": "",
- "nodes": [
- {
- "error": {
- "code": 0,
- "description": "",
- "exitCode": 0,
- "hideException": false,
- "stackTrace": {
- "cause": {
- "localizedMessage": "",
- "message": "",
- "stackTrace": [
- {
- "classLoaderName": "string",
- "className": "string",
- "fileName": "string",
- "lineNumber": 0,
- "methodName": "string",
- "moduleName": "string",
- "moduleVersion": "string",
- "nativeMethod": true
}
]
}, - "localizedMessage": "",
- "message": "",
- "stackTrace": [
- {
- "classLoaderName": "string",
- "className": "string",
- "fileName": "string",
- "lineNumber": 0,
- "methodName": "string",
- "moduleName": "string",
- "moduleVersion": "string",
- "nativeMethod": true
}
], - "suppressed": [
- {
- "localizedMessage": "string",
- "message": "string",
- "stackTrace": [
- {
- "classLoaderName": "string",
- "className": "string",
- "fileName": "string",
- "lineNumber": 0,
- "methodName": "string",
- "moduleName": "string",
- "moduleVersion": "string",
- "nativeMethod": true
}
]
}
]
}
}, - "isCoordinator": false,
- "localAddress": "",
- "name": "",
- "state": "unknown"
}
], - "settings": {
- "connectTimeout": 0,
- "mode": "single",
- "name": "",
- "nodeName": "",
- "role": "coordinator",
- "secretKey": "",
- "stopOnError": false
}
}
Updates the server configuration
Updates andDefines an extended result object for administrative configuration operations when the configuration is updated./or validates the server, application, user or log configuration.The updated configuration is passed in the body of the request.
Authorizations:
Request Body schema: application/jsonrequired
Administration configuration
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "configuration": {
- "bridges": {
- "chromium": {
- "commandLine": {
- "switch": [
- {
- "mode": "add",
- "name": "",
- "value": ""
}
]
}, - "enabled": true,
- "headlessMode": "old",
- "hostAddress": "localhost",
- "noSandbox": false,
- "path": "",
- "port": 0
}, - "office": {
- "enabled": false,
- "excel": {
- "minExecutionTime": 5000,
- "oleStartWaitTime": 0,
- "oleTerminationTimeout": 0,
- "useExecutionTest": true
}, - "powerPoint": {
- "minExecutionTime": 5000,
- "oleStartWaitTime": 0,
- "oleTerminationTimeout": 0,
- "useExecutionTest": true
}, - "showMessagesOnDebugView": false,
- "useExcel": true,
- "usePowerPoint": true,
- "useVisio": false,
- "useWord": true,
- "visio": {
- "minExecutionTime": 5000,
- "oleStartWaitTime": 0,
- "oleTerminationTimeout": 0,
- "useExecutionTest": true
}, - "word": {
- "minExecutionTime": 5000,
- "oleStartWaitTime": 0,
- "oleTerminationTimeout": 0,
- "useExecutionTest": true
}
}, - "sharePoint": {
- "app": {
- "applicationId": "",
- "clientSecret": "",
- "tenantId": ""
}, - "enabled": false,
- "site": {
- "siteName": ""
}
}
}, - "keystore": {
- "entry": [
- {
- "alias": "",
- "password": ""
}
], - "filter": [
- {
- "pattern": ""
}
], - "password": "",
- "type": "NONE"
}, - "license": {
- "key": "",
- "licensee": ""
}, - "portal": {
- "auth": {
- "allowAnonymous": true,
- "enabled": true,
- "timeout": {
- "autoRefresh": 300,
- "inactivity": 60
}
}, - "functions": {
- "addWatermark": true,
- "changeDocumentSettings": true,
- "changeDocumentView": true,
- "compress": true,
- "convertDocument": true,
- "createBarcode": true,
- "deletePages": true,
- "detectBarcode": true,
- "editAnnotation": true,
- "editAttachment": true,
- "editBackground": true,
- "editBoxes": true,
- "editForms": true,
- "editHeaderFooter": true,
- "editTransitions": true,
- "encryptDocument": true,
- "exportAsImage": true,
- "extractContent": true,
- "extractPages": true,
- "mergeDocument": true,
- "movePages": true,
- "ocrConversion": true,
- "outline": true,
- "pdfaConversion": true,
- "portfolio": true,
- "printDocument": true,
- "redact": true,
- "renameDocument": true,
- "rotatePages": true,
- "sanitize": true,
- "scalePages": true,
- "showHelp": true,
- "signDocument": true,
- "splitDocument": true,
- "transcribeDocument": true,
- "uploadFile": true,
- "uploadUrl": true
}, - "newsPanel": {
- "contentRefreshInterval": 3600,
- "entry": [
- {
- "url": ""
}
]
}, - "settings": {
- "compress": {
- "compressProfile": "always"
}, - "signature": {
- "signatureEditProfile": "adobeRestrictions"
}
}, - "userInterface": {
- "limits": {
- "displayDiskSpace": false,
- "displayMaxFiles": false
}, - "tooltips": {
- "showDelay": 5
}
}
}, - "proxies": {
- "proxy": [
- {
- "host": "",
- "nonProxyHost": [
- {
- "host": ""
}
], - "password": "",
- "port": 8080,
- "scheme": "http",
- "userName": ""
}
]
}, - "tsa": {
- "hashAlgorithm": "MD5",
- "password": "",
- "url": "",
- "user": ""
}, - "webservices": {
- "barcode": {
- "enabled": true,
- "instances": 2,
- "maxLatency": 180,
- "queueMode": "AUTO",
- "queueSize": 100
}, - "converter": {
- "defaultFont": "",
- "enabled": true,
- "fontPath": "",
- "instances": 2,
- "maxLatency": 180,
- "queueMode": "AUTO",
- "queueSize": 100
}, - "ocr": {
- "enabled": true,
- "instances": 2,
- "maxLatency": 180,
- "queueMode": "AUTO",
- "queueSize": 100
}, - "pdfa": {
- "enabled": true,
- "fontPath": "",
- "instances": 2,
- "maxLatency": 180,
- "queueMode": "AUTO",
- "queueSize": 100
}, - "signature": {
- "enabled": true,
- "instances": 2,
- "maxLatency": 180,
- "queueMode": "AUTO",
- "queueSize": 100
}, - "toolbox": {
- "enabled": true,
- "instances": 2,
- "maxLatency": 180,
- "queueMode": "AUTO",
- "queueSize": 100
}, - "urlconverter": {
- "enabled": true,
- "instances": 2,
- "maxLatency": 180,
- "queueMode": "AUTO",
- "queueSize": 100,
- "timeout": 60000,
- "userAgent": "Mozilla/5.0 (Windows; U; Windows NT 6.1; de-DE) AppleWebKit/532.4 (KHTML, like Gecko) Qt/4.6.1 Safari/532.4"
}
}
}, - "configurationChecks": [
- {
- "checkType": "license"
}
], - "globalKeyStore": {
- "certificates": [
- { }
], - "keyStoreContent": ""
}, - "configurationMode": "validate",
- "configurationType": "application"
}
Response samples
- 200
- 400
- 401
{- "error": {
- "code": 0,
- "description": "",
- "exitCode": 0,
- "hideException": false,
- "stackTrace": {
- "cause": {
- "localizedMessage": "",
- "message": "",
- "stackTrace": [
- {
- "classLoaderName": "string",
- "className": "string",
- "fileName": "string",
- "lineNumber": 0,
- "methodName": "string",
- "moduleName": "string",
- "moduleVersion": "string",
- "nativeMethod": true
}
]
}, - "localizedMessage": "",
- "message": "",
- "stackTrace": [
- {
- "classLoaderName": "string",
- "className": "string",
- "fileName": "string",
- "lineNumber": 0,
- "methodName": "string",
- "moduleName": "string",
- "moduleVersion": "string",
- "nativeMethod": true
}
], - "suppressed": [
- {
- "localizedMessage": "string",
- "message": "string",
- "stackTrace": [
- {
- "classLoaderName": "string",
- "className": "string",
- "fileName": "string",
- "lineNumber": 0,
- "methodName": "string",
- "moduleName": "string",
- "moduleVersion": "string",
- "nativeMethod": true
}
]
}
]
}
}, - "executableError": {
- "applicationName": "",
- "commandLine": [
- "string"
], - "consoleOutput": [
- "string"
], - "exitCode": 0,
- "isSuccessful": false,
- "message": ""
}, - "operation": "validate"
}
Gets the server configuration
Gets the server, application, user or log configuration of the server. The requested configuration is selected via `{type}.
Authorizations:
path Parameters
type required | string (Admin_ConfigurationType) Default: "application" Enum: "application" "server" "user" "log" "cluster" "provider" The type of configuration to return. |
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url https://portal.webpdf.de/webPDF/rest/admin/configuration/%7Btype%7D \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 200
- 400
- 401
{- "configuration": {
- "bridges": {
- "chromium": {
- "commandLine": {
- "switch": [
- {
- "mode": "add",
- "name": "",
- "value": ""
}
]
}, - "enabled": true,
- "headlessMode": "old",
- "hostAddress": "localhost",
- "noSandbox": false,
- "path": "",
- "port": 0
}, - "office": {
- "enabled": false,
- "excel": {
- "minExecutionTime": 5000,
- "oleStartWaitTime": 0,
- "oleTerminationTimeout": 0,
- "useExecutionTest": true
}, - "powerPoint": {
- "minExecutionTime": 5000,
- "oleStartWaitTime": 0,
- "oleTerminationTimeout": 0,
- "useExecutionTest": true
}, - "showMessagesOnDebugView": false,
- "useExcel": true,
- "usePowerPoint": true,
- "useVisio": false,
- "useWord": true,
- "visio": {
- "minExecutionTime": 5000,
- "oleStartWaitTime": 0,
- "oleTerminationTimeout": 0,
- "useExecutionTest": true
}, - "word": {
- "minExecutionTime": 5000,
- "oleStartWaitTime": 0,
- "oleTerminationTimeout": 0,
- "useExecutionTest": true
}
}, - "sharePoint": {
- "app": {
- "applicationId": "",
- "clientSecret": "",
- "tenantId": ""
}, - "enabled": false,
- "site": {
- "siteName": ""
}
}
}, - "keystore": {
- "entry": [
- {
- "alias": "",
- "password": ""
}
], - "filter": [
- {
- "pattern": ""
}
], - "password": "",
- "type": "NONE"
}, - "license": {
- "key": "",
- "licensee": ""
}, - "portal": {
- "auth": {
- "allowAnonymous": true,
- "enabled": true,
- "timeout": {
- "autoRefresh": 300,
- "inactivity": 60
}
}, - "functions": {
- "addWatermark": true,
- "changeDocumentSettings": true,
- "changeDocumentView": true,
- "compress": true,
- "convertDocument": true,
- "createBarcode": true,
- "deletePages": true,
- "detectBarcode": true,
- "editAnnotation": true,
- "editAttachment": true,
- "editBackground": true,
- "editBoxes": true,
- "editForms": true,
- "editHeaderFooter": true,
- "editTransitions": true,
- "encryptDocument": true,
- "exportAsImage": true,
- "extractContent": true,
- "extractPages": true,
- "mergeDocument": true,
- "movePages": true,
- "ocrConversion": true,
- "outline": true,
- "pdfaConversion": true,
- "portfolio": true,
- "printDocument": true,
- "redact": true,
- "renameDocument": true,
- "rotatePages": true,
- "sanitize": true,
- "scalePages": true,
- "showHelp": true,
- "signDocument": true,
- "splitDocument": true,
- "transcribeDocument": true,
- "uploadFile": true,
- "uploadUrl": true
}, - "newsPanel": {
- "contentRefreshInterval": 3600,
- "entry": [
- {
- "url": ""
}
]
}, - "settings": {
- "compress": {
- "compressProfile": "always"
}, - "signature": {
- "signatureEditProfile": "adobeRestrictions"
}
}, - "userInterface": {
- "limits": {
- "displayDiskSpace": false,
- "displayMaxFiles": false
}, - "tooltips": {
- "showDelay": 5
}
}
}, - "proxies": {
- "proxy": [
- {
- "host": "",
- "nonProxyHost": [
- {
- "host": ""
}
], - "password": "",
- "port": 8080,
- "scheme": "http",
- "userName": ""
}
]
}, - "tsa": {
- "hashAlgorithm": "MD5",
- "password": "",
- "url": "",
- "user": ""
}, - "webservices": {
- "barcode": {
- "enabled": true,
- "instances": 2,
- "maxLatency": 180,
- "queueMode": "AUTO",
- "queueSize": 100
}, - "converter": {
- "defaultFont": "",
- "enabled": true,
- "fontPath": "",
- "instances": 2,
- "maxLatency": 180,
- "queueMode": "AUTO",
- "queueSize": 100
}, - "ocr": {
- "enabled": true,
- "instances": 2,
- "maxLatency": 180,
- "queueMode": "AUTO",
- "queueSize": 100
}, - "pdfa": {
- "enabled": true,
- "fontPath": "",
- "instances": 2,
- "maxLatency": 180,
- "queueMode": "AUTO",
- "queueSize": 100
}, - "signature": {
- "enabled": true,
- "instances": 2,
- "maxLatency": 180,
- "queueMode": "AUTO",
- "queueSize": 100
}, - "toolbox": {
- "enabled": true,
- "instances": 2,
- "maxLatency": 180,
- "queueMode": "AUTO",
- "queueSize": 100
}, - "urlconverter": {
- "enabled": true,
- "instances": 2,
- "maxLatency": 180,
- "queueMode": "AUTO",
- "queueSize": 100,
- "timeout": 60000,
- "userAgent": "Mozilla/5.0 (Windows; U; Windows NT 6.1; de-DE) AppleWebKit/532.4 (KHTML, like Gecko) Qt/4.6.1 Safari/532.4"
}
}
}, - "configurationChecks": [
- {
- "checkType": "license"
}
], - "globalKeyStore": {
- "certificates": [
- {
- "aliasName": "",
- "certificate": "",
- "hasPrivateKey": false,
- "isPrivateKeyReadable": false,
- "keyStoreName": "",
- "keyStoreOrigin": "global"
}
], - "keyStoreContent": ""
}, - "configurationMode": "validate",
- "configurationType": "application"
}
Updates a file in the datastore
Updates a file in the server's data store. The file, the file group and the settings to be updated are passed in the request body of the call.
Authorizations:
Request Body schema: application/jsonrequired
Specifies the file type and settings that should be updated for the file.
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "fileContent": "",
- "fileGroup": "background"
}
Response samples
- 200
- 400
- 401
{- "fileContent": "",
- "fileGroup": "background"
}
Deletes a file from the datastore
Deletes a file, depending on the selected {group}
, from the server's data store. The file to delete, if {group} = generic
, is referenced by the query parameter name
.
Authorizations:
path Parameters
group required | string (Admin_FileGroupDataStore) Default: "generic" Enum: "generic" "theme" "logo" "background" The group of datastore files to search for the file. |
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request DELETE \ --url 'https://portal.webpdf.de/webPDF/rest/admin/datastore/%7Bgroup%7D?name=SOME_STRING_VALUE' \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 400
- 401
{- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}
Gets a file from the datastore
Retrieves a file, depending on the selected {group}
, from the server's data store. The file name for {group} = generic
is referenced by the query parameter name
.
Authorizations:
path Parameters
group required | string (Admin_FileGroupDataStore) Default: "generic" Enum: "generic" "theme" "logo" "background" The group of datastore files to search for the file. |
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url 'https://portal.webpdf.de/webPDF/rest/admin/datastore/%7Bgroup%7D?name=SOME_STRING_VALUE' \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 200
- 400
- 401
{- "fileContent": "",
- "fileGroup": "background"
}
Returns the contents of a log file
Returns the contents of the current log or a specific log file of the server. If the date
query parameter is specified, an explicitly selected log will be read.
Authorizations:
query Parameters
date | string Default: "" Example: date=2019-12-01 Sets a specific date (yyyy-MM-dd) to extract from the server log. |
header Parameters
Range | string Example: 0-1024 Sets a specific byte range to extract from the server log. |
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url 'https://portal.webpdf.de/webPDF/rest/admin/server/log?date=2019-12-01' \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \ --header 'Range: 0-1024'
Response samples
- 400
- 401
{- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}
Returns the byte size of a log file
Returns the byte size of the current log or a specific log file of the server. If the date
query parameter is specified, an explicitly selected log will be read.
Authorizations:
query Parameters
date | string Default: "" Example: date=2019-12-01 The date (yyyy-MM-dd) of a specific searched log. |
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request HEAD \ --url 'https://portal.webpdf.de/webPDF/rest/admin/server/log?date=2019-12-01' \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 400
- 401
{- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url https://portal.webpdf.de/webPDF/rest/admin/server/restart \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 400
- 401
{- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}
Provides status information about the server
Provides status information about the server, the JVM and the Web services.
Authorizations:
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url https://portal.webpdf.de/webPDF/rest/admin/server/status \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 200
- 400
- 401
{- "java": {
- "gc": [
- {
- "collectionCount": 0,
- "collectionTime": 0,
- "name": ""
}
], - "javaName": "",
- "javaVendor": "",
- "javaVersion": "",
- "memoryAllocated": 0,
- "memoryFree": 0,
- "memoryMax": 0,
- "memoryTotalFree": 0,
- "memoryUsed": 0
}, - "os": {
- "container": {
- "name": ""
}, - "cpuLogicalProcessors": 0,
- "memoryCommittedVirtualSize": 0,
- "memoryFree": 0,
- "memoryFreeSwapSize": 0,
- "memoryTotal": 0,
- "memoryTotalSwapSize": 0,
- "osArchitecture": "",
- "osName": "",
- "osVersion": "",
- "processCpuLoad": 0,
- "systemLoadAverage": 0
}, - "server": {
- "hasChangedConfiguration": false,
- "licenseIsClusterUsage": false,
- "licenseText": "",
- "mainVersion": 0,
- "minorVersion": 0,
- "providers": {
- "documentStorage": [
- {
- "fileName": "",
- "format": "plain",
- "name": ""
}
], - "fileStorage": [
- {
- "fileName": "",
- "format": "plain",
- "name": ""
}
], - "sessionStorage": [
- {
- "fileName": "",
- "format": "plain",
- "name": ""
}
]
}, - "serverPlatform": "windows",
- "serverStart": 0,
- "serverVersion": ""
}, - "webservices": {
- "property1": {
- "enabled": false,
- "executables": {
- "property1": {
- "enabled": false,
- "status": "unknown"
}, - "property2": {
- "enabled": false,
- "status": "unknown"
}
}, - "state": {
- "instances": {
- "maxPoolSize": 0,
- "maxQueueSize": 0,
- "maxUsedPoolSize": 0,
- "maxUsedQueueSize": 0,
- "poolSize": 0,
- "queueSize": 0
}, - "jobs": {
- "errorDetails": {
- "property1": {
- "code": 0,
- "count": 1,
- "description": ""
}, - "property2": {
- "code": 0,
- "count": 1,
- "description": ""
}
}, - "executionTimeMs": 0,
- "lastJobId": -1,
- "numberOfErrorJobs": 0,
- "numberOfJobs": 0,
- "numberOfSuccessfulJobs": 0
}, - "lastUpdate": 0
}, - "status": "unknown"
}, - "property2": {
- "enabled": false,
- "executables": {
- "property1": {
- "enabled": false,
- "status": "unknown"
}, - "property2": {
- "enabled": false,
- "status": "unknown"
}
}, - "state": {
- "instances": {
- "maxPoolSize": 0,
- "maxQueueSize": 0,
- "maxUsedPoolSize": 0,
- "maxUsedQueueSize": 0,
- "poolSize": 0,
- "queueSize": 0
}, - "jobs": {
- "errorDetails": {
- "property1": {
- "code": 0,
- "count": 1,
- "description": ""
}, - "property2": {
- "code": 0,
- "count": 1,
- "description": ""
}
}, - "executionTimeMs": 0,
- "lastJobId": -1,
- "numberOfErrorJobs": 0,
- "numberOfJobs": 0,
- "numberOfSuccessfulJobs": 0
}, - "lastUpdate": 0
}, - "status": "unknown"
}
}
}
Collects a set of support information
Collects a set of support information, that may simplify finding the cause and solution of issues.
Authorizations:
query Parameters
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url 'https://portal.webpdf.de/webPDF/rest/admin/server/support?group=logs&group=config&start=2022-03-30&end=2022-03-31' \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 400
- 401
{- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}
Returns the session table
Returns the session table with detailed status information about each session.
Authorizations:
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url https://portal.webpdf.de/webPDF/rest/admin/session/table \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 200
- 400
- 401
{- "activeSessions": 0,
- "expiredSessions": 0,
- "sessionCount": 0,
- "sessionDiskUsage": 0,
- "sessionId": "",
- "sessionList": [
- {
- "admin": false,
- "fileCount": 0,
- "fileSize": 0,
- "fileSizeHistory": 0,
- "isAdmin": false,
- "lastAccess": 0,
- "providerId": "",
- "sessionExpiration": 0,
- "sessionId": "",
- "sessionState": "unknown",
- "userName": ""
}
], - "timestamp": 0,
- "unstableSessions": 0
}
Closes the session with the specified ID
Closes the session with the specified ID, by activating the session expiration. After the call, any access to the session results in an error.
Authorizations:
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request POST \ --url https://portal.webpdf.de/webPDF/rest/admin/session/%7BsessionId%7D/close \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 400
- 401
{- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}
Converts a document to the PDF format
Converts a document into a PDF document. The document is selected with {documentId}
.
- After the operation is performed, the existing document will be replaced by the new created PDF document.
- To select the document use the
documentId
returned, when uploading the document to the server´s document storage, or select adocumentId
of one of the documents returned byGET /documents/list
.
Authorizations:
path Parameters
documentId required | string The unique |
Request Body schema: application/jsonrequired
The parameters and options for the conversion.
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "billing": {
- "applicationName": "external",
- "customerCode": "",
- "userName": ""
}, - "converter": {
- "accessPassword": "",
- "compression": true,
- "dpi": 300,
- "embedFonts": false,
- "fileExtension": "",
- "html": {
- "adjustFonts": false,
- "baseURL": "",
- "downloadImages": false,
- "errorReport": {
- "format": "xml",
- "mode": "none"
}, - "imageMode": "base64",
- "preferCSSPageSize": false,
- "templateData": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "useAsTemplate": false,
- "useBackground": true
}, - "image": {
- "maintainAspectRatio": false
}, - "jpegQuality": 90,
- "mail": {
- "adjustFonts": false,
- "attachmentMode": "embed",
- "downloadImages": false,
- "ignoreMissingBodyChunk": false,
- "reduceImageSize": false,
- "resizeImages": false,
- "resizeTables": false,
- "useBackground": true
}, - "maxRecursion": 1,
- "office": {
- "word": {
- "form": {
- "enabled": true
}
}
}, - "officeBridge": { },
- "page": {
- "bottom": 20,
- "footer": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "header": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "height": 297,
- "left": 20,
- "metrics": "pt",
- "right": 20,
- "top": 20,
- "width": 210
}, - "pages": "",
- "pdfa": {
- "analyze": {
- "level": "1a"
}, - "convert": {
- "autoTagging": false,
- "errorCorrection": {
- "enabled": false
}, - "errorReport": "none",
- "imageQuality": 75,
- "level": "1a",
- "successReport": "none",
- "zugferd": {
- "xmlFile": {
- "source": "value",
- "uri": "",
- "value": "string",
- "version": "v10Comfort"
}
}
}
}, - "reduceResolution": false,
- "report": {
- "contentProblems": false,
- "fontAliasUsage": false,
- "fontIsMissing": false
}, - "sharePointBridge": { },
- "signature": {
- "add": {
- "appearance": {
- "identifier": "",
- "identifierElements": {
- "showCommonName": true,
- "showCountry": true,
- "showDate": true,
- "showLocal": true,
- "showMail": true,
- "showName": true,
- "showOrganisationName": true,
- "showOrganisationUnit": true,
- "showSignedBy": true,
- "showState": true,
- "textSignedBy": ""
}, - "image": {
- "data": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "opacity": 50,
- "position": "center"
}, - "name": "",
- "page": 1,
- "position": {
- "coordinates": "pdf",
- "height": 10,
- "metrics": "pt",
- "width": 50,
- "x": 0,
- "y": 0
}, - "showCommonName": true
}, - "appendSignature": false,
- "certificationLevel": "none",
- "contact": "",
- "fieldName": "Signature1",
- "keyName": "",
- "keyPassword": "",
- "location": "",
- "reason": "",
- "signer": {
- "keyPair": {
- "certificate": {
- "source": "value",
- "uri": "",
- "value": ""
}, - "privateKey": {
- "password": "",
- "source": "value",
- "uri": "",
- "value": ""
}
}
}
}, - "clear": {
- "flatten": false
}
}, - "template": {
- "data": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "file": {
- "name": "",
- "source": "value",
- "uri": "",
- "value": "string"
}, - "language": ""
}, - "text": {
- "syntaxHighlight": {
- "available": "",
- "fontFamily": "",
- "fontOrigin": "system",
- "fontSize": "10px",
- "language": "",
- "lineHeight": "12px",
- "lineNumbers": true,
- "relevance": 90,
- "wordBreak": "auto"
}, - "textHighlight": {
- "color": "#000000",
- "fontFamily": "",
- "fontOrigin": "system",
- "fontSize": "10px",
- "lineHeight": "12px",
- "lineNumbers": false,
- "wordBreak": "auto"
}, - "useSyntaxDetection": false
}, - "transform": {
- "xRechnung": {
- "visualization": {
- "file": [
- {
- "fileName": "",
- "format": "xslt",
- "source": "value",
- "uri": "",
- "value": "string"
}
]
}
}, - "xslTransformation": {
- "resources": {
- "file": [
- {
- "fileName": "",
- "format": "xslt",
- "source": "value",
- "uri": "",
- "value": "string"
}
]
}
}
}
}, - "password": {
- "keyPair": {
- "certificate": {
- "source": "value",
- "uri": "",
- "value": ""
}, - "privateKey": {
- "password": "",
- "source": "value",
- "uri": "",
- "value": ""
}
}, - "open": "",
- "permission": ""
}, - "settings": {
- "compress": {
- "compressObjects": {
- "objectStreamSize": 200
}, - "compressProfile": "always"
}, - "http": {
- "followRedirect": true,
- "headers": {
- "header": [
- {
- "name": "",
- "value": ""
}
]
}, - "ssl": {
- "ciphers": {
- "cipher": [
- "string"
]
}, - "protocols": {
- "protocol": [
- "TLSv1"
]
}
}, - "timeout": {
- "connect": 10000,
- "response": 60000
}, - "userAgent": ""
}, - "pdfa": {
- "pdfaEditProfile": "generalEditRestrictions"
}, - "signature": {
- "signatureEditProfile": "adobeRestrictions"
}
}
}
Response samples
- 200
- 400
- 401
- 429
{- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
Converts a PDF document to the PDF/A format
Converts a PDF document into a PDF/A document. The document is selected with {documentId}
.
- After the operation is performed, the existing document will be replaced by the updated document.
- Be aware that the document must conform to the intended PDF/A conformance level, otherwise the conversion should be expected to fail.
- To select the document use the
documentId
returned, when uploading the document to the server´s document storage, or select adocumentId
of one of the documents returned byGET /documents/list
.
Authorizations:
path Parameters
documentId required | string The unique |
Request Body schema: application/jsonrequired
The parameters and options for the PDF/A conversion.
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "billing": {
- "applicationName": "external",
- "customerCode": "",
- "userName": ""
}, - "password": {
- "keyPair": {
- "certificate": {
- "source": "value",
- "uri": "",
- "value": ""
}, - "privateKey": {
- "password": "",
- "source": "value",
- "uri": "",
- "value": ""
}
}, - "open": "",
- "permission": ""
}, - "pdfa": {
- "analyze": {
- "level": "1a"
}, - "convert": {
- "autoTagging": false,
- "errorCorrection": {
- "enabled": false
}, - "errorReport": "none",
- "imageQuality": 75,
- "level": "1a",
- "successReport": "none",
- "zugferd": {
- "xmlFile": {
- "source": "value",
- "uri": "",
- "value": "string",
- "version": "v10Comfort"
}
}
}
}, - "settings": {
- "compress": {
- "compressObjects": {
- "objectStreamSize": 200
}, - "compressProfile": "always"
}, - "http": {
- "followRedirect": true,
- "headers": {
- "header": [
- {
- "name": "",
- "value": ""
}
]
}, - "ssl": {
- "ciphers": {
- "cipher": [
- "string"
]
}, - "protocols": {
- "protocol": [
- "TLSv1"
]
}
}, - "timeout": {
- "connect": 10000,
- "response": 60000
}, - "userAgent": ""
}, - "pdfa": {
- "pdfaEditProfile": "generalEditRestrictions"
}, - "signature": {
- "signatureEditProfile": "adobeRestrictions"
}
}
}
Response samples
- 200
- 400
- 401
- 429
{- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
Executes OCR and adds a text layer to the document
Executes OCR operations for images and PDF documents. Should the document already be a PDF document, a text layer is added to pages of the document not containing text. Otherwise the document is converted to a PDF document first, to apply an OCR text layer then. The document is selected with {documentId}
.
- After the operation is performed, the existing document will be replaced by the updated document.
- To select the document use the
documentId
returned, when uploading the document to the server´s document storage, or select adocumentId
of one of the documents returned byGET /documents/list
.
Authorizations:
path Parameters
documentId required | string The unique |
Request Body schema: application/jsonrequired
The parameters and options for the OCR operation.
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "billing": {
- "applicationName": "external",
- "customerCode": "",
- "userName": ""
}, - "ocr": {
- "checkResolution": true,
- "failOnWarning": false,
- "forceEachPage": false,
- "imageDpi": 200,
- "jpegQuality": 75,
- "language": "eng",
- "normalizePageRotation": false,
- "ocrMode": "pageSegments",
- "optimization": {
- "deskew": true,
- "despeckle": true,
- "edgeAccentuation": "off",
- "edgeAccentuationValue": 100,
- "gammaCorrection": "off",
- "gammaCorrectionValue": 0,
- "increaseContrast": "off",
- "increaseContrastValue": 0,
- "medianFilter": "off",
- "medianFilterValue": 1,
- "noiseReduction": "off",
- "noiseReductionValue": 1,
- "reduceDithering": false,
- "sharpen": "off",
- "sharpenValue": 1
}, - "outputFormat": "text",
- "page": {
- "height": 297,
- "metrics": "pt",
- "width": 210
}, - "pdfa": {
- "analyze": {
- "level": "1a"
}, - "convert": {
- "autoTagging": false,
- "errorCorrection": {
- "enabled": false
}, - "errorReport": "none",
- "imageQuality": 75,
- "level": "1a",
- "successReport": "none",
- "zugferd": {
- "xmlFile": {
- "source": "value",
- "uri": "",
- "value": "string",
- "version": "v10Comfort"
}
}
}
}
}, - "password": {
- "keyPair": {
- "certificate": {
- "source": "value",
- "uri": "",
- "value": ""
}, - "privateKey": {
- "password": "",
- "source": "value",
- "uri": "",
- "value": ""
}
}, - "open": "",
- "permission": ""
}, - "settings": {
- "compress": {
- "compressObjects": {
- "objectStreamSize": 200
}, - "compressProfile": "always"
}, - "http": {
- "followRedirect": true,
- "headers": {
- "header": [
- {
- "name": "",
- "value": ""
}
]
}, - "ssl": {
- "ciphers": {
- "cipher": [
- "string"
]
}, - "protocols": {
- "protocol": [
- "TLSv1"
]
}
}, - "timeout": {
- "connect": 10000,
- "response": 60000
}, - "userAgent": ""
}, - "pdfa": {
- "pdfaEditProfile": "generalEditRestrictions"
}, - "signature": {
- "signatureEditProfile": "adobeRestrictions"
}
}
}
Response samples
- 200
- 400
- 401
- 429
{- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
Digitally signs a PDF document.
Digitally signs a PDF document. The document is selected with {documentId}
.
- After the operation is performed, the existing document will be replaced by the updated document.
- To select the document use the
documentId
returned, when uploading the document to the server´s document storage, or select adocumentId
of one of the documents returned byGET /documents/list
.
Authorizations:
path Parameters
documentId required | string The unique |
Request Body schema: application/jsonrequired
The parameters and options for the signature operation.
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "billing": {
- "applicationName": "external",
- "customerCode": "",
- "userName": ""
}, - "password": {
- "keyPair": {
- "certificate": {
- "source": "value",
- "uri": "",
- "value": ""
}, - "privateKey": {
- "password": "",
- "source": "value",
- "uri": "",
- "value": ""
}
}, - "open": "",
- "permission": ""
}, - "settings": {
- "compress": {
- "compressObjects": {
- "objectStreamSize": 200
}, - "compressProfile": "always"
}, - "http": {
- "followRedirect": true,
- "headers": {
- "header": [
- {
- "name": "",
- "value": ""
}
]
}, - "ssl": {
- "ciphers": {
- "cipher": [
- "string"
]
}, - "protocols": {
- "protocol": [
- "TLSv1"
]
}
}, - "timeout": {
- "connect": 10000,
- "response": 60000
}, - "userAgent": ""
}, - "pdfa": {
- "pdfaEditProfile": "generalEditRestrictions"
}, - "signature": {
- "signatureEditProfile": "adobeRestrictions"
}
}, - "signature": {
- "add": {
- "appearance": {
- "identifier": "",
- "identifierElements": {
- "showCommonName": true,
- "showCountry": true,
- "showDate": true,
- "showLocal": true,
- "showMail": true,
- "showName": true,
- "showOrganisationName": true,
- "showOrganisationUnit": true,
- "showSignedBy": true,
- "showState": true,
- "textSignedBy": ""
}, - "image": {
- "data": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "opacity": 50,
- "position": "center"
}, - "name": "",
- "page": 1,
- "position": {
- "coordinates": "pdf",
- "height": 10,
- "metrics": "pt",
- "width": 50,
- "x": 0,
- "y": 0
}, - "showCommonName": true
}, - "appendSignature": false,
- "certificationLevel": "none",
- "contact": "",
- "fieldName": "Signature1",
- "keyName": "",
- "keyPassword": "",
- "location": "",
- "reason": "",
- "signer": {
- "keyPair": {
- "certificate": {
- "source": "value",
- "uri": "",
- "value": ""
}, - "privateKey": {
- "password": "",
- "source": "value",
- "uri": "",
- "value": ""
}
}
}
}, - "clear": {
- "flatten": false
}
}
}
Response samples
- 200
- 400
- 401
- 429
{- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
Creates an empty document and applies toolbox operations
Provides a number of different operations that can be used to edit the newly created PDF document.
- Which toolbox operations are executed is selected in the given parameters.
- You can find information about the created document (such as it´s
documentId
in the server´s document storage) in the hereby returnedDocumentFile
.
Authorizations:
query Parameters
Request Body schema: application/jsonrequired
The parameters and options for the toolbox operation.
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "billing": {
- "applicationName": "external",
- "customerCode": "",
- "userName": ""
}, - "password": {
- "keyPair": {
- "certificate": {
- "source": "value",
- "uri": "",
- "value": ""
}, - "privateKey": {
- "password": "",
- "source": "value",
- "uri": "",
- "value": ""
}
}, - "open": "",
- "permission": ""
}, - "settings": {
- "compress": {
- "compressObjects": {
- "objectStreamSize": 200
}, - "compressProfile": "always"
}, - "http": {
- "followRedirect": true,
- "headers": {
- "header": [
- {
- "name": "",
- "value": ""
}
]
}, - "ssl": {
- "ciphers": {
- "cipher": [
- "string"
]
}, - "protocols": {
- "protocol": [
- "TLSv1"
]
}
}, - "timeout": {
- "connect": 10000,
- "response": 60000
}, - "userAgent": ""
}, - "pdfa": {
- "pdfaEditProfile": "generalEditRestrictions"
}, - "signature": {
- "signatureEditProfile": "adobeRestrictions"
}
}, - "toolbox": [
- {
- "annotation": {
- "add": {
- "circle": [
- {
- "border": {
- "borderStyle": "solid",
- "borderWidth": 1,
- "dashLength": 3,
- "gapLength": 3
}, - "color": "#4800FF",
- "contents": "",
- "creator": "",
- "drawMode": "fill",
- "hidden": false,
- "intents": "",
- "interiorColor": "#000000",
- "invisible": false,
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "rectangle": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
], - "freetext": [
- {
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "font": {
- "bold": false,
- "color": "#A0A0A0",
- "italic": false,
- "name": "",
- "size": 24
}, - "hidden": false,
- "intents": "",
- "invisible": false,
- "justification": "leftJustified",
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "rectangle": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
], - "line": [
- {
- "border": {
- "borderStyle": "solid",
- "borderWidth": 1,
- "dashLength": 3,
- "gapLength": 3
}, - "color": "#4800FF",
- "contents": "",
- "creator": "",
- "end": {
- "coordinates": "pdf",
- "metrics": "pt",
- "x": 0,
- "y": 0
}, - "hidden": false,
- "intents": "",
- "invisible": false,
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "printable": false,
- "rotatable": true,
- "start": {
- "coordinates": "pdf",
- "metrics": "pt",
- "x": 0,
- "y": 0
}, - "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
], - "markup": [
- {
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "hidden": false,
- "intents": "",
- "invisible": false,
- "locked": true,
- "markupType": "highlight",
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "pathElement": [
- {
- "coordinates": null,
- "height": null,
- "metrics": null,
- "width": null,
- "x": null,
- "y": null
}
], - "quadrilateral": [
- {
- "point": [ ]
}
]
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
], - "redact": [
- {
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "hidden": false,
- "intents": "",
- "interiorColor": "#000000",
- "invisible": false,
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "pathElement": [
- {
- "coordinates": null,
- "height": null,
- "metrics": null,
- "width": null,
- "x": null,
- "y": null
}
], - "quadrilateral": [
- {
- "point": [ ]
}
]
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
], - "rubberstamp": [
- {
- "appearanceGeneration": "Always",
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "customIconName": "",
- "hidden": false,
- "icon": "approved",
- "intents": "",
- "invisible": false,
- "locked": true,
- "name": "",
- "normalAppearance": {
- "image": {
- "data": {
- "source": null,
- "uri": null,
- "value": null
}, - "preserveAspectRatio": false
}, - "pdf": {
- "data": {
- "source": null,
- "uri": null,
- "value": null
}, - "page": 1,
- "preserveAspectRatio": false
}, - "svg": {
- "aspectRatioAxis": "x",
- "data": {
- "source": null,
- "uri": null,
- "value": null
}, - "preserveAspectRatio": false
}
}, - "opacity": 100,
- "page": 1,
- "position": {
- "rectangle": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
], - "square": [
- {
- "border": {
- "borderStyle": "solid",
- "borderWidth": 1,
- "dashLength": 3,
- "gapLength": 3
}, - "color": "#4800FF",
- "contents": "",
- "creator": "",
- "drawMode": "fill",
- "hidden": false,
- "intents": "",
- "interiorColor": "#000000",
- "invisible": false,
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "rectangle": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
], - "text": [
- {
- "appearanceGeneration": "Always",
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "customIconName": "",
- "hidden": false,
- "icon": "check",
- "initialOpen": true,
- "intents": "",
- "invisible": false,
- "locked": true,
- "name": "",
- "normalAppearance": {
- "image": {
- "data": {
- "source": null,
- "uri": null,
- "value": null
}, - "preserveAspectRatio": false
}, - "pdf": {
- "data": {
- "source": null,
- "uri": null,
- "value": null
}, - "page": 1,
- "preserveAspectRatio": false
}, - "svg": {
- "aspectRatioAxis": "x",
- "data": {
- "source": null,
- "uri": null,
- "value": null
}, - "preserveAspectRatio": false
}
}, - "opacity": 100,
- "page": 1,
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
]
}, - "clear": {
- "flatten": false,
- "pages": ""
}, - "comment": {
- "add": {
- "changeAnnotationState": [
- {
- "creator": "",
- "name": "",
- "page": 1,
- "replyState": "accepted",
- "replyTo": "",
- "subject": ""
}
], - "markAnnotation": [
- {
- "creator": "",
- "markedState": true,
- "name": "",
- "page": 1,
- "replyTo": "",
- "subject": ""
}
], - "replyTo": [
- {
- "comment": "",
- "creator": "",
- "name": "",
- "page": 1,
- "replyTo": "",
- "subject": ""
}
]
}, - "edit": {
- "replyTo": [
- {
- "comment": "",
- "creator": "",
- "name": "",
- "objectKey": {
- "id": ""
}, - "page": 1,
- "subject": ""
}
]
}
}, - "edit": {
- "circle": {
- "border": {
- "borderStyle": "solid",
- "borderWidth": 1,
- "dashLength": 3,
- "gapLength": 3
}, - "color": "#4800FF",
- "contents": "",
- "creator": "",
- "drawMode": "fill",
- "hidden": false,
- "intents": "",
- "interiorColor": "#000000",
- "invisible": false,
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "rectangle": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}, - "freetext": {
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "font": {
- "bold": false,
- "color": "#A0A0A0",
- "italic": false,
- "name": "",
- "size": 24
}, - "hidden": false,
- "intents": "",
- "invisible": false,
- "justification": "leftJustified",
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "rectangle": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}, - "line": {
- "border": {
- "borderStyle": "solid",
- "borderWidth": 1,
- "dashLength": 3,
- "gapLength": 3
}, - "color": "#4800FF",
- "contents": "",
- "creator": "",
- "end": {
- "coordinates": "pdf",
- "metrics": "pt",
- "x": 0,
- "y": 0
}, - "hidden": false,
- "intents": "",
- "invisible": false,
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "printable": false,
- "rotatable": true,
- "start": {
- "coordinates": "pdf",
- "metrics": "pt",
- "x": 0,
- "y": 0
}, - "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}, - "markup": {
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "hidden": false,
- "intents": "",
- "invisible": false,
- "locked": true,
- "markupType": "highlight",
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "pathElement": [
- {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
], - "quadrilateral": [
- {
- "point": [
- null
]
}
]
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}, - "redact": {
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "hidden": false,
- "intents": "",
- "interiorColor": "#000000",
- "invisible": false,
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "pathElement": [
- {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
], - "quadrilateral": [
- {
- "point": [
- null
]
}
]
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}, - "rubberstamp": {
- "appearanceGeneration": "Always",
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "customIconName": "",
- "hidden": false,
- "icon": "approved",
- "intents": "",
- "invisible": false,
- "locked": true,
- "name": "",
- "normalAppearance": {
- "image": {
- "data": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "preserveAspectRatio": false
}, - "pdf": {
- "data": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "page": 1,
- "preserveAspectRatio": false
}, - "svg": {
- "aspectRatioAxis": "x",
- "data": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "preserveAspectRatio": false
}
}, - "opacity": 100,
- "page": 1,
- "position": {
- "rectangle": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}, - "selection": {
- "select": [
- {
- "objectKey": {
- "id": ""
}, - "page": 1,
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}
]
}, - "square": {
- "border": {
- "borderStyle": "solid",
- "borderWidth": 1,
- "dashLength": 3,
- "gapLength": 3
}, - "color": "#4800FF",
- "contents": "",
- "creator": "",
- "drawMode": "fill",
- "hidden": false,
- "intents": "",
- "interiorColor": "#000000",
- "invisible": false,
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "rectangle": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}, - "text": {
- "appearanceGeneration": "Always",
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "customIconName": "",
- "hidden": false,
- "icon": "check",
- "initialOpen": true,
- "intents": "",
- "invisible": false,
- "locked": true,
- "name": "",
- "normalAppearance": {
- "image": {
- "data": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "preserveAspectRatio": false
}, - "pdf": {
- "data": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "page": 1,
- "preserveAspectRatio": false
}, - "svg": {
- "aspectRatioAxis": "x",
- "data": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "preserveAspectRatio": false
}
}, - "opacity": 100,
- "page": 1,
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
}, - "remove": {
- "selection": {
- "select": [
- {
- "objectKey": {
- "id": ""
}, - "page": 1,
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}
]
}
}
}
}
]
}
Response samples
- 200
- 400
- 401
- 429
{- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
Provides a set of different operations to modify PDF documents
Provides a set of different operations to modify existing PDF documents. The document is selected with {documentId}
.
- After the operation is performed, the existing document will be replaced by the updated document.
- Which toolbox operations are executed is selected in the given parameters.
- To select the document use the
documentId
returned, when uploading the document to the server´s document storage, or select adocumentId
of one of the documents returned byGET /documents/list
.
Authorizations:
path Parameters
documentId required | string The unique |
Request Body schema: application/jsonrequired
The parameters and options for the toolbox operation.
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "billing": {
- "applicationName": "external",
- "customerCode": "",
- "userName": ""
}, - "password": {
- "keyPair": {
- "certificate": {
- "source": "value",
- "uri": "",
- "value": ""
}, - "privateKey": {
- "password": "",
- "source": "value",
- "uri": "",
- "value": ""
}
}, - "open": "",
- "permission": ""
}, - "settings": {
- "compress": {
- "compressObjects": {
- "objectStreamSize": 200
}, - "compressProfile": "always"
}, - "http": {
- "followRedirect": true,
- "headers": {
- "header": [
- {
- "name": "",
- "value": ""
}
]
}, - "ssl": {
- "ciphers": {
- "cipher": [
- "string"
]
}, - "protocols": {
- "protocol": [
- "TLSv1"
]
}
}, - "timeout": {
- "connect": 10000,
- "response": 60000
}, - "userAgent": ""
}, - "pdfa": {
- "pdfaEditProfile": "generalEditRestrictions"
}, - "signature": {
- "signatureEditProfile": "adobeRestrictions"
}
}, - "toolbox": [
- {
- "annotation": {
- "add": {
- "circle": [
- {
- "border": {
- "borderStyle": "solid",
- "borderWidth": 1,
- "dashLength": 3,
- "gapLength": 3
}, - "color": "#4800FF",
- "contents": "",
- "creator": "",
- "drawMode": "fill",
- "hidden": false,
- "intents": "",
- "interiorColor": "#000000",
- "invisible": false,
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "rectangle": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
], - "freetext": [
- {
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "font": {
- "bold": false,
- "color": "#A0A0A0",
- "italic": false,
- "name": "",
- "size": 24
}, - "hidden": false,
- "intents": "",
- "invisible": false,
- "justification": "leftJustified",
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "rectangle": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
], - "line": [
- {
- "border": {
- "borderStyle": "solid",
- "borderWidth": 1,
- "dashLength": 3,
- "gapLength": 3
}, - "color": "#4800FF",
- "contents": "",
- "creator": "",
- "end": {
- "coordinates": "pdf",
- "metrics": "pt",
- "x": 0,
- "y": 0
}, - "hidden": false,
- "intents": "",
- "invisible": false,
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "printable": false,
- "rotatable": true,
- "start": {
- "coordinates": "pdf",
- "metrics": "pt",
- "x": 0,
- "y": 0
}, - "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
], - "markup": [
- {
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "hidden": false,
- "intents": "",
- "invisible": false,
- "locked": true,
- "markupType": "highlight",
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "pathElement": [
- {
- "coordinates": null,
- "height": null,
- "metrics": null,
- "width": null,
- "x": null,
- "y": null
}
], - "quadrilateral": [
- {
- "point": [ ]
}
]
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
], - "redact": [
- {
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "hidden": false,
- "intents": "",
- "interiorColor": "#000000",
- "invisible": false,
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "pathElement": [
- {
- "coordinates": null,
- "height": null,
- "metrics": null,
- "width": null,
- "x": null,
- "y": null
}
], - "quadrilateral": [
- {
- "point": [ ]
}
]
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
], - "rubberstamp": [
- {
- "appearanceGeneration": "Always",
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "customIconName": "",
- "hidden": false,
- "icon": "approved",
- "intents": "",
- "invisible": false,
- "locked": true,
- "name": "",
- "normalAppearance": {
- "image": {
- "data": {
- "source": null,
- "uri": null,
- "value": null
}, - "preserveAspectRatio": false
}, - "pdf": {
- "data": {
- "source": null,
- "uri": null,
- "value": null
}, - "page": 1,
- "preserveAspectRatio": false
}, - "svg": {
- "aspectRatioAxis": "x",
- "data": {
- "source": null,
- "uri": null,
- "value": null
}, - "preserveAspectRatio": false
}
}, - "opacity": 100,
- "page": 1,
- "position": {
- "rectangle": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
], - "square": [
- {
- "border": {
- "borderStyle": "solid",
- "borderWidth": 1,
- "dashLength": 3,
- "gapLength": 3
}, - "color": "#4800FF",
- "contents": "",
- "creator": "",
- "drawMode": "fill",
- "hidden": false,
- "intents": "",
- "interiorColor": "#000000",
- "invisible": false,
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "rectangle": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
], - "text": [
- {
- "appearanceGeneration": "Always",
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "customIconName": "",
- "hidden": false,
- "icon": "check",
- "initialOpen": true,
- "intents": "",
- "invisible": false,
- "locked": true,
- "name": "",
- "normalAppearance": {
- "image": {
- "data": {
- "source": null,
- "uri": null,
- "value": null
}, - "preserveAspectRatio": false
}, - "pdf": {
- "data": {
- "source": null,
- "uri": null,
- "value": null
}, - "page": 1,
- "preserveAspectRatio": false
}, - "svg": {
- "aspectRatioAxis": "x",
- "data": {
- "source": null,
- "uri": null,
- "value": null
}, - "preserveAspectRatio": false
}
}, - "opacity": 100,
- "page": 1,
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
]
}, - "clear": {
- "flatten": false,
- "pages": ""
}, - "comment": {
- "add": {
- "changeAnnotationState": [
- {
- "creator": "",
- "name": "",
- "page": 1,
- "replyState": "accepted",
- "replyTo": "",
- "subject": ""
}
], - "markAnnotation": [
- {
- "creator": "",
- "markedState": true,
- "name": "",
- "page": 1,
- "replyTo": "",
- "subject": ""
}
], - "replyTo": [
- {
- "comment": "",
- "creator": "",
- "name": "",
- "page": 1,
- "replyTo": "",
- "subject": ""
}
]
}, - "edit": {
- "replyTo": [
- {
- "comment": "",
- "creator": "",
- "name": "",
- "objectKey": {
- "id": ""
}, - "page": 1,
- "subject": ""
}
]
}
}, - "edit": {
- "circle": {
- "border": {
- "borderStyle": "solid",
- "borderWidth": 1,
- "dashLength": 3,
- "gapLength": 3
}, - "color": "#4800FF",
- "contents": "",
- "creator": "",
- "drawMode": "fill",
- "hidden": false,
- "intents": "",
- "interiorColor": "#000000",
- "invisible": false,
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "rectangle": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}, - "freetext": {
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "font": {
- "bold": false,
- "color": "#A0A0A0",
- "italic": false,
- "name": "",
- "size": 24
}, - "hidden": false,
- "intents": "",
- "invisible": false,
- "justification": "leftJustified",
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "rectangle": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}, - "line": {
- "border": {
- "borderStyle": "solid",
- "borderWidth": 1,
- "dashLength": 3,
- "gapLength": 3
}, - "color": "#4800FF",
- "contents": "",
- "creator": "",
- "end": {
- "coordinates": "pdf",
- "metrics": "pt",
- "x": 0,
- "y": 0
}, - "hidden": false,
- "intents": "",
- "invisible": false,
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "printable": false,
- "rotatable": true,
- "start": {
- "coordinates": "pdf",
- "metrics": "pt",
- "x": 0,
- "y": 0
}, - "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}, - "markup": {
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "hidden": false,
- "intents": "",
- "invisible": false,
- "locked": true,
- "markupType": "highlight",
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "pathElement": [
- {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
], - "quadrilateral": [
- {
- "point": [
- null
]
}
]
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}, - "redact": {
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "hidden": false,
- "intents": "",
- "interiorColor": "#000000",
- "invisible": false,
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "pathElement": [
- {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
], - "quadrilateral": [
- {
- "point": [
- null
]
}
]
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}, - "rubberstamp": {
- "appearanceGeneration": "Always",
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "customIconName": "",
- "hidden": false,
- "icon": "approved",
- "intents": "",
- "invisible": false,
- "locked": true,
- "name": "",
- "normalAppearance": {
- "image": {
- "data": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "preserveAspectRatio": false
}, - "pdf": {
- "data": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "page": 1,
- "preserveAspectRatio": false
}, - "svg": {
- "aspectRatioAxis": "x",
- "data": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "preserveAspectRatio": false
}
}, - "opacity": 100,
- "page": 1,
- "position": {
- "rectangle": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}, - "selection": {
- "select": [
- {
- "objectKey": {
- "id": ""
}, - "page": 1,
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}
]
}, - "square": {
- "border": {
- "borderStyle": "solid",
- "borderWidth": 1,
- "dashLength": 3,
- "gapLength": 3
}, - "color": "#4800FF",
- "contents": "",
- "creator": "",
- "drawMode": "fill",
- "hidden": false,
- "intents": "",
- "interiorColor": "#000000",
- "invisible": false,
- "locked": true,
- "name": "",
- "opacity": 100,
- "page": 1,
- "position": {
- "rectangle": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}, - "text": {
- "appearanceGeneration": "Always",
- "color": "#4800FF",
- "contents": "",
- "creator": "",
- "customIconName": "",
- "hidden": false,
- "icon": "check",
- "initialOpen": true,
- "intents": "",
- "invisible": false,
- "locked": true,
- "name": "",
- "normalAppearance": {
- "image": {
- "data": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "preserveAspectRatio": false
}, - "pdf": {
- "data": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "page": 1,
- "preserveAspectRatio": false
}, - "svg": {
- "aspectRatioAxis": "x",
- "data": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "preserveAspectRatio": false
}
}, - "opacity": 100,
- "page": 1,
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "printable": false,
- "rotatable": true,
- "subject": "",
- "viewable": true,
- "writable": true,
- "zoomable": true
}
}, - "remove": {
- "selection": {
- "select": [
- {
- "objectKey": {
- "id": ""
}, - "page": 1,
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}
}
]
}
}
}
}
]
}
Response samples
- 200
- 400
- 401
- 429
{- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
Creates a PDF document from the content of an URL
Loads the contents of a URL and converts the content into a new PDF document.
- You can find information about the created document (such as it´s
documentId
in the server´s document storage) in the hereby returnedDocumentFile
.
Authorizations:
query Parameters
history | boolean Default: false When set to true and whenever the document is manipulated, a history entry will be created and stored. This allows to revert such changes later. |
Request Body schema: application/jsonrequired
The parameters and options for the URL conversion.
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "billing": {
- "applicationName": "external",
- "customerCode": "",
- "userName": ""
}, - "password": {
- "keyPair": {
- "certificate": {
- "source": "value",
- "uri": "",
- "value": ""
}, - "privateKey": {
- "password": "",
- "source": "value",
- "uri": "",
- "value": ""
}
}, - "open": "",
- "permission": ""
}, - "settings": {
- "compress": {
- "compressObjects": {
- "objectStreamSize": 200
}, - "compressProfile": "always"
}, - "http": {
- "followRedirect": true,
- "headers": {
- "header": [
- {
- "name": "",
- "value": ""
}
]
}, - "ssl": {
- "ciphers": {
- "cipher": [
- "string"
]
}, - "protocols": {
- "protocol": [
- "TLSv1"
]
}
}, - "timeout": {
- "connect": 10000,
- "response": 60000
}, - "userAgent": ""
}, - "pdfa": {
- "pdfaEditProfile": "generalEditRestrictions"
}, - "signature": {
- "signatureEditProfile": "adobeRestrictions"
}
}, - "urlconverter": {
- "basicAuth": {
- "password": "",
- "userName": ""
}, - "page": {
- "bottom": 20,
- "footer": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "header": {
- "source": "value",
- "uri": "",
- "value": "string"
}, - "height": 297,
- "left": 20,
- "metrics": "pt",
- "right": 20,
- "top": 20,
- "width": 210
}, - "proxy": {
- "address": "",
- "password": "",
- "port": 0,
- "userName": ""
}, - "url": ""
}
}
Response samples
- 200
- 400
- 401
- 429
{- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
Creates a new PDF or image containing a barcode
Creates a new PDF or image file containing a barcode as it´s only content.
- You can find information about the created document (such as it´s
documentId
in the server´s document storage) in the hereby returnedDocumentFile
.
Authorizations:
query Parameters
Request Body schema: application/jsonrequired
The parameters and options for the barcode operation.
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "barcode": {
- "add": {
- "aztec": [
- {
- "charset": "utf-8",
- "errorCorrection": 7,
- "layers": 0,
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
], - "codabar": [
- {
- "charset": "utf-8",
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
], - "code128": [
- {
- "charset": "utf-8",
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
], - "code39": [
- {
- "charset": "utf-8",
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
], - "datamatrix": [
- {
- "charset": "utf-8",
- "errorCorrection": 2,
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "shape": "default",
- "value": ""
}
], - "ean13": [
- {
- "charset": "utf-8",
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
], - "ean8": [
- {
- "charset": "utf-8",
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
], - "itf": [
- {
- "charset": "utf-8",
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
], - "outputFormat": "pdf",
- "pdf417": [
- {
- "charset": "utf-8",
- "compact": false,
- "compactionMode": "text",
- "dataCodewordsMax": 0,
- "dataCodewordsMin": 0,
- "errorCorrection": 2,
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "shape": "default",
- "symbolsPerCodewordMax": 0,
- "symbolsPerCodewordMin": 0,
- "value": ""
}
], - "qrcode": [
- {
- "charset": "utf-8",
- "errorCorrection": "l",
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
], - "qrswiss": [
- {
- "content": {
- "format": "plain",
- "source": "value",
- "uri": "",
- "value": "string"
}, - "dpi": 200,
- "format": "codeOnly",
- "language": "de",
- "pdf": {
- "mode": "insertBefore",
- "page": 1
}, - "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "separator": "none"
}
], - "upca": [
- {
- "charset": "utf-8",
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
]
}, - "detect": {
- "inputFormat": "pdf",
- "outputFormat": "xml",
- "selection": [
- {
- "allowedLengths": "",
- "barcode39CheckDigit": false,
- "charset": "utf-8",
- "codabarStartEndDigits": false,
- "formats": "",
- "gs1": false,
- "pages": "",
- "pureBarcode": false,
- "resolution": 200,
- "scanArea": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "tryHarder": true,
- "upcEanExtensions": ""
}
]
}
}, - "billing": {
- "applicationName": "external",
- "customerCode": "",
- "userName": ""
}, - "password": {
- "keyPair": {
- "certificate": {
- "source": "value",
- "uri": "",
- "value": ""
}, - "privateKey": {
- "password": "",
- "source": "value",
- "uri": "",
- "value": ""
}
}, - "open": "",
- "permission": ""
}, - "settings": {
- "compress": {
- "compressObjects": {
- "objectStreamSize": 200
}, - "compressProfile": "always"
}, - "http": {
- "followRedirect": true,
- "headers": {
- "header": [
- {
- "name": "",
- "value": ""
}
]
}, - "ssl": {
- "ciphers": {
- "cipher": [
- "string"
]
}, - "protocols": {
- "protocol": [
- "TLSv1"
]
}
}, - "timeout": {
- "connect": 10000,
- "response": 60000
}, - "userAgent": ""
}, - "pdfa": {
- "pdfaEditProfile": "generalEditRestrictions"
}, - "signature": {
- "signatureEditProfile": "adobeRestrictions"
}
}
}
Response samples
- 200
- 400
- 401
- 429
{- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
Adds barcodes or recognizes barcodes in PDF documents
Adds a barcode to a PDF or detects a barcode in a PDF document or image file. The document is selected with {documentId}
.
- After the operation is performed, the existing document will be replaced by the updated document.
- To select the document use the
documentId
returned, when uploading the document to the server´s document storage, or select adocumentId
of one of the documents returned byGET /documents/list
.
Authorizations:
path Parameters
documentId required | string The unique |
Request Body schema: application/jsonrequired
The parameters and options for the barcode operation.
Responses
Request samples
- Payload
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
{- "barcode": {
- "add": {
- "aztec": [
- {
- "charset": "utf-8",
- "errorCorrection": 7,
- "layers": 0,
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
], - "codabar": [
- {
- "charset": "utf-8",
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
], - "code128": [
- {
- "charset": "utf-8",
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
], - "code39": [
- {
- "charset": "utf-8",
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
], - "datamatrix": [
- {
- "charset": "utf-8",
- "errorCorrection": 2,
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "shape": "default",
- "value": ""
}
], - "ean13": [
- {
- "charset": "utf-8",
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
], - "ean8": [
- {
- "charset": "utf-8",
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
], - "itf": [
- {
- "charset": "utf-8",
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
], - "outputFormat": "pdf",
- "pdf417": [
- {
- "charset": "utf-8",
- "compact": false,
- "compactionMode": "text",
- "dataCodewordsMax": 0,
- "dataCodewordsMin": 0,
- "errorCorrection": 2,
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "shape": "default",
- "symbolsPerCodewordMax": 0,
- "symbolsPerCodewordMin": 0,
- "value": ""
}
], - "qrcode": [
- {
- "charset": "utf-8",
- "errorCorrection": "l",
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
], - "qrswiss": [
- {
- "content": {
- "format": "plain",
- "source": "value",
- "uri": "",
- "value": "string"
}, - "dpi": 200,
- "format": "codeOnly",
- "language": "de",
- "pdf": {
- "mode": "insertBefore",
- "page": 1
}, - "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "separator": "none"
}
], - "upca": [
- {
- "charset": "utf-8",
- "margin": 0,
- "pages": "",
- "position": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "rotation": 0,
- "value": ""
}
]
}, - "detect": {
- "inputFormat": "pdf",
- "outputFormat": "xml",
- "selection": [
- {
- "allowedLengths": "",
- "barcode39CheckDigit": false,
- "charset": "utf-8",
- "codabarStartEndDigits": false,
- "formats": "",
- "gs1": false,
- "pages": "",
- "pureBarcode": false,
- "resolution": 200,
- "scanArea": {
- "coordinates": "pdf",
- "height": 0,
- "metrics": "pt",
- "width": 0,
- "x": 0,
- "y": 0
}, - "tryHarder": true,
- "upcEanExtensions": ""
}
]
}
}, - "billing": {
- "applicationName": "external",
- "customerCode": "",
- "userName": ""
}, - "password": {
- "keyPair": {
- "certificate": {
- "source": "value",
- "uri": "",
- "value": ""
}, - "privateKey": {
- "password": "",
- "source": "value",
- "uri": "",
- "value": ""
}
}, - "open": "",
- "permission": ""
}, - "settings": {
- "compress": {
- "compressObjects": {
- "objectStreamSize": 200
}, - "compressProfile": "always"
}, - "http": {
- "followRedirect": true,
- "headers": {
- "header": [
- {
- "name": "",
- "value": ""
}
]
}, - "ssl": {
- "ciphers": {
- "cipher": [
- "string"
]
}, - "protocols": {
- "protocol": [
- "TLSv1"
]
}
}, - "timeout": {
- "connect": 10000,
- "response": 60000
}, - "userAgent": ""
}, - "pdfa": {
- "pdfaEditProfile": "generalEditRestrictions"
}, - "signature": {
- "signatureEditProfile": "adobeRestrictions"
}
}
}
Response samples
- 200
- 400
- 401
- 429
{- "documentId": "",
- "error": {
- "errorCode": -7,
- "errorMessage": "Unable to read pdf file content",
- "stackTrace": "... <Java stacktrace as string> ..."
}, - "fileExtension": "",
- "fileLastModified": "",
- "fileName": "",
- "filePath": "",
- "fileSize": 0,
- "fileTypeGroups": "",
- "fileTypeId": 0,
- "historyId": 0,
- "isFileLocked": false,
- "metadata": {
- "metadataType": "pdf"
}, - "mimeType": "",
- "parentDocumentId": "",
- "password": {
- "isCertificateSet": false,
- "isOpenSet": false,
- "isPermissionSet": false,
- "recipients": [
- {
- "issuer": "",
- "serialNumber": ""
}
]
}
}
Important: Web services in this area are intended for usage of the portal application only and may change at any time without notice!
Gets the portal information [Internal use only, will change without further notice]
Gets the portal information. These information are for internal use only, they are undocumented and will change without further notice!
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url https://portal.webpdf.de/webPDF/rest/portal/info
Response samples
- 200
- 400
{- "environment": {
- "fonts": [
- "string"
], - "printers": [
- "string"
]
}, - "functionsStatus": {
- "addWatermark": true,
- "changeDocumentSettings": true,
- "changeDocumentView": true,
- "compress": true,
- "convertDocument": true,
- "createBarcode": true,
- "deletePages": true,
- "detectBarcode": true,
- "editAnnotation": true,
- "editAttachment": true,
- "editBackground": true,
- "editBoxes": true,
- "editForms": true,
- "editHeaderFooter": true,
- "editTransitions": true,
- "encryptDocument": true,
- "exportAsImage": true,
- "extractContent": true,
- "extractPages": true,
- "mergeDocument": true,
- "movePages": true,
- "ocrConversion": true,
- "outline": true,
- "pdfaConversion": true,
- "portfolio": true,
- "printDocument": true,
- "redact": true,
- "renameDocument": true,
- "rotatePages": true,
- "sanitize": true,
- "scalePages": true,
- "showHelp": true,
- "signDocument": true,
- "splitDocument": true,
- "transcribeDocument": true,
- "uploadFile": true,
- "uploadUrl": true
}, - "localAuth": {
- "allowAnonymous": false,
- "apiEnabled": false,
- "enabled": false,
- "timeout": {
- "autoRefresh": 300,
- "inactivity": 60
}, - "userStorage": "unknown"
}, - "newsPanel": {
- "contentRefreshInterval": 60,
- "entry": [
- {
- "url": ""
}
]
}, - "oauth": [
- {
- "applicationId": "",
- "clientId": "",
- "displayName": "",
- "id": "",
- "logout": {
- "url": ""
}, - "name": "generic",
- "oidc": {
- "authorization_endpoint": "",
- "claims_supported": [
- "string"
], - "grant_types_supported": [
- "string"
], - "id_token_signing_alg_values_supported": [
- "string"
], - "issuer": "",
- "jwks_uri": "",
- "response_types_supported": [
- "string"
], - "scopes_supported": [
- "string"
], - "subject_types_supported": [
- "string"
], - "token_endpoint": "",
- "userinfo_endpoint": ""
}, - "scope": ""
}
], - "serverMode": "single",
- "serverStart": 0,
- "serverVersion": "",
- "settings": {
- "compress": {
- "compressProfile": "always"
}, - "signature": {
- "signatureEditProfile": "adobeRestrictions"
}
}, - "userInterface": {
- "limits": {
- "displayDiskSpace": false,
- "displayMaxFiles": false
}, - "resources": {
- "backgroundFileName": "",
- "logoFileName": "",
- "themeFileName": ""
}, - "tooltips": {
- "showDelay": 5
}
}, - "webserviceStatus": {
- "webservices": {
- "property1": {
- "enabled": false,
- "executables": {
- "property1": {
- "enabled": false,
- "status": "unknown"
}, - "property2": {
- "enabled": false,
- "status": "unknown"
}
}, - "state": {
- "instances": {
- "maxPoolSize": 0,
- "maxQueueSize": 0,
- "maxUsedPoolSize": 0,
- "maxUsedQueueSize": 0,
- "poolSize": 0,
- "queueSize": 0
}, - "jobs": {
- "errorDetails": {
- "property1": {
- "code": 0,
- "count": 1,
- "description": ""
}, - "property2": {
- "code": 0,
- "count": 1,
- "description": ""
}
}, - "executionTimeMs": 0,
- "lastJobId": -1,
- "numberOfErrorJobs": 0,
- "numberOfJobs": 0,
- "numberOfSuccessfulJobs": 0
}, - "lastUpdate": 0
}, - "status": "unknown"
}, - "property2": {
- "enabled": false,
- "executables": {
- "property1": {
- "enabled": false,
- "status": "unknown"
}, - "property2": {
- "enabled": false,
- "status": "unknown"
}
}, - "state": {
- "instances": {
- "maxPoolSize": 0,
- "maxQueueSize": 0,
- "maxUsedPoolSize": 0,
- "maxUsedQueueSize": 0,
- "poolSize": 0,
- "queueSize": 0
}, - "jobs": {
- "errorDetails": {
- "property1": {
- "code": 0,
- "count": 1,
- "description": ""
}, - "property2": {
- "code": 0,
- "count": 1,
- "description": ""
}
}, - "executionTimeMs": 0,
- "lastJobId": -1,
- "numberOfErrorJobs": 0,
- "numberOfJobs": 0,
- "numberOfSuccessfulJobs": 0
}, - "lastUpdate": 0
}, - "status": "unknown"
}
}
}
}
Important: Web services in this area are currently experimental and may change at any time without notice!
Reads statistic information (Experimental Web service)
Reads statistic information from the server for Web services and file formats. (Experimental Web service)
Authorizations:
path Parameters
query Parameters
Responses
Request samples
- Shell + Curl
- Java + Okhttp
- Javascript + Xhr
- Php + Curl
- Node + Native
- Csharp + Restsharp
curl --request GET \ --url 'https://portal.webpdf.de/webPDF/rest/admin/statistic/%7BdataSource%7D/%7Baggregation%7D?webservice=SOME_ARRAY_VALUE&start=2022-01-20T12%3A30%3A00%2C000Z&end=2022-01-22T23%3A59%3A59%2C000Z' \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
Response samples
- 200
- 400
- 401
{- "data": {
- "property1": {
- "property1": {
- "executionTimeMs": 0,
- "formats": {
- "property1": {
- "executionTimeMs": 0,
- "numberOfErrors": 0,
- "numberOfJobs": 0
}, - "property2": {
- "executionTimeMs": 0,
- "numberOfErrors": 0,
- "numberOfJobs": 0
}
}, - "instances": {
- "count": 0,
- "poolSize": 0,
- "queueSize": 0
}, - "numberOfErrors": 0,
- "numberOfJobs": 0
}, - "property2": {
- "executionTimeMs": 0,
- "formats": {
- "property1": {
- "executionTimeMs": 0,
- "numberOfErrors": 0,
- "numberOfJobs": 0
}, - "property2": {
- "executionTimeMs": 0,
- "numberOfErrors": 0,
- "numberOfJobs": 0
}
}, - "instances": {
- "count": 0,
- "poolSize": 0,
- "queueSize": 0
}, - "numberOfErrors": 0,
- "numberOfJobs": 0
}
}, - "property2": {
- "property1": {
- "executionTimeMs": 0,
- "formats": {
- "property1": {
- "executionTimeMs": 0,
- "numberOfErrors": 0,
- "numberOfJobs": 0
}, - "property2": {
- "executionTimeMs": 0,
- "numberOfErrors": 0,
- "numberOfJobs": 0
}
}, - "instances": {
- "count": 0,
- "poolSize": 0,
- "queueSize": 0
}, - "numberOfErrors": 0,
- "numberOfJobs": 0
}, - "property2": {
- "executionTimeMs": 0,
- "formats": {
- "property1": {
- "executionTimeMs": 0,
- "numberOfErrors": 0,
- "numberOfJobs": 0
}, - "property2": {
- "executionTimeMs": 0,
- "numberOfErrors": 0,
- "numberOfJobs": 0
}
}, - "instances": {
- "count": 0,
- "poolSize": 0,
- "queueSize": 0
}, - "numberOfErrors": 0,
- "numberOfJobs": 0
}
}
}
}