{"id":21133325,"url":"https://github.com/pdfgeneratorapi/java-client","last_synced_at":"2025-04-13T09:10:54.136Z","repository":{"id":39940295,"uuid":"254649705","full_name":"pdfgeneratorapi/java-client","owner":"pdfgeneratorapi","description":"Java Client for PDF Generator API (Autogenerated from OpenAPI v3)","archived":false,"fork":false,"pushed_at":"2025-02-12T18:31:39.000Z","size":728,"stargazers_count":3,"open_issues_count":3,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-27T00:54:12.605Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pdfgeneratorapi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-04-10T14:06:31.000Z","updated_at":"2025-02-12T18:31:04.000Z","dependencies_parsed_at":"2025-01-21T06:34:30.856Z","dependency_job_id":null,"html_url":"https://github.com/pdfgeneratorapi/java-client","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pdfgeneratorapi%2Fjava-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pdfgeneratorapi%2Fjava-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pdfgeneratorapi%2Fjava-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pdfgeneratorapi%2Fjava-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pdfgeneratorapi","download_url":"https://codeload.github.com/pdfgeneratorapi/java-client/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248688565,"owners_count":21145766,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-20T06:06:39.721Z","updated_at":"2025-04-13T09:10:54.129Z","avatar_url":"https://github.com/pdfgeneratorapi.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pdf-generator-api\n\nPDF Generator API\n- API version: 4.0.8\n  - Build date: 2025-02-12T20:23:44.909280+02:00[Europe/Tallinn]\n  - Generator version: 7.11.0\n\n# Introduction\n[PDF Generator API](https://pdfgeneratorapi.com) allows you easily generate transactional PDF documents and reduce the development and support costs by enabling your users to create and manage their document templates using a browser-based drag-and-drop document editor.\n\nThe PDF Generator API features a web API architecture, allowing you to code in the language of your choice. This API supports the JSON media type, and uses UTF-8 character encoding.\n\n## Base URL\nThe base URL for all the API endpoints is `https://us1.pdfgeneratorapi.com/api/v4`\n\nFor example\n* `https://us1.pdfgeneratorapi.com/api/v4/templates`\n* `https://us1.pdfgeneratorapi.com/api/v4/workspaces`\n* `https://us1.pdfgeneratorapi.com/api/v4/templates/123123`\n\n## Editor\nPDF Generator API comes with a powerful drag \u0026 drop editor that allows to create any kind of document templates, from barcode labels to invoices, quotes and reports. You can find tutorials and videos from our [Support Portal](https://support.pdfgeneratorapi.com).\n* [Component specification](https://support.pdfgeneratorapi.com/en/category/components-1ffseaj/)\n* [Expression Language documentation](https://support.pdfgeneratorapi.com/en/category/expression-language-q203pa/)\n* [Frequently asked questions and answers](https://support.pdfgeneratorapi.com/en/category/qanda-1ov519d/)\n\n## Definitions\n\n### Organization\nOrganization is a group of workspaces owned by your account.\n\n### Workspace\nWorkspace contains templates. Each workspace has access to their own templates and organization default templates.\n\n### Master Workspace\nMaster Workspace is the main/default workspace of your Organization. The Master Workspace identifier is the email you signed up with.\n\n### Default Template\nDefault template is a template that is available for all workspaces by default. You can set the template access type under Page Setup. If template has \"Organization\" access then your users can use them from the \"New\" menu in the Editor.\n\n### Data Field\nData Field is a placeholder for the specific data in your JSON data set. In this example JSON you can access the buyer name using Data Field `{paymentDetails::buyerName}`. The separator between depth levels is :: (two colons). When designing the template you don’t have to know every Data Field, our editor automatically extracts all the available fields from your data set and provides an easy way to insert them into the template.\n```\n{\n    \"documentNumber\": 1,\n    \"paymentDetails\": {\n        \"method\": \"Credit Card\",\n        \"buyerName\": \"John Smith\"\n    },\n    \"items\": [\n        {\n            \"id\": 1,\n            \"name\": \"Item one\"\n        }\n    ]\n}\n```\n\n## Rate limiting\nOur API endpoints use IP-based rate limiting and allow you to make up to 2 requests per second and 60 requests per minute. If you make more requests, you will receive a response with HTTP code 429.\n\nResponse headers contain additional values:\n\n| Header   | Description                    |\n|--------|--------------------------------|\n| X-RateLimit-Limit    | Maximum requests per minute                   |\n| X-RateLimit-Remaining    | The requests remaining in the current minute               |\n| Retry-After     | How many seconds you need to wait until you are allowed to make requests |\n\n*  *  *  *  *\n\n# Libraries and SDKs\n## Postman Collection\nWe have created a [Postman Collection](https://www.postman.com/pdfgeneratorapi/workspace/pdf-generator-api-public-workspace/overview) so you can easily test all the API endpoints without developing and code. You can download the collection [here](https://www.postman.com/pdfgeneratorapi/workspace/pdf-generator-api-public-workspace/collection/11578263-42fed446-af7e-4266-84e1-69e8c1752e93).\n\n## Client Libraries\nAll our Client Libraries are auto-generated using [OpenAPI Generator](https://openapi-generator.tech/) which uses the OpenAPI v3 specification to automatically generate a client library in specific programming language.\n\n* [PHP Client](https://github.com/pdfgeneratorapi/php-client)\n* [Java Client](https://github.com/pdfgeneratorapi/java-client)\n* [Ruby Client](https://github.com/pdfgeneratorapi/ruby-client)\n* [Python Client](https://github.com/pdfgeneratorapi/python-client)\n* [Javascript Client](https://github.com/pdfgeneratorapi/javascript-client)\n\nWe have validated the generated libraries, but let us know if you find any anomalies in the client code.\n*  *  *  *  *\n\n# Authentication\nThe PDF Generator API uses __JSON Web Tokens (JWT)__ to authenticate all API requests. These tokens offer a method to establish secure server-to-server authentication by transferring a compact JSON object with a signed payload of your account’s API Key and Secret.\nWhen authenticating to the PDF Generator API, a JWT should be generated uniquely by a __server-side application__ and included as a __Bearer Token__ in the header of each request.\n\n\n\u003cSecurityDefinitions /\u003e\n\n## Accessing your API Key and Secret\nYou can find your __API Key__ and __API Secret__ from the __Account Settings__ page after you login to PDF Generator API [here](https://pdfgeneratorapi.com/login).\n\n## Creating a JWT\nJSON Web Tokens are composed of three sections: a header, a payload (containing a claim set), and a signature. The header and payload are JSON objects, which are serialized to UTF-8 bytes, then encoded using base64url encoding.\n\nThe JWT's header, payload, and signature are concatenated with periods (.). As a result, a JWT typically takes the following form:\n```\n{Base64url encoded header}.{Base64url encoded payload}.{Base64url encoded signature}\n```\n\nWe recommend and support libraries provided on [jwt.io](https://jwt.io/). While other libraries can create JWT, these recommended libraries are the most robust.\n\n### Header\nProperty `alg` defines which signing algorithm is being used. PDF Generator API users HS256.\nProperty `typ` defines the type of token and it is always JWT.\n```\n{\n  \"alg\": \"HS256\",\n  \"typ\": \"JWT\"\n}\n```\n\n### Payload\nThe second part of the token is the payload, which contains the claims  or the pieces of information being passed about the user and any metadata required.\nIt is mandatory to specify the following claims:\n* issuer (`iss`): Your API key\n* subject (`sub`): Workspace identifier\n* expiration time (`exp`): Timestamp (unix epoch time) until the token is valid. It is highly recommended to set the exp timestamp for a short period, i.e. a matter of seconds. This way, if a token is intercepted or shared, the token will only be valid for a short period of time.\n\n```\n{\n  \"iss\": \"ad54aaff89ffdfeff178bb8a8f359b29fcb20edb56250b9f584aa2cb0162ed4a\",\n  \"sub\": \"demo.example@actualreports.com\",\n  \"exp\": 1586112639\n}\n```\n\n### Signature\nTo create the signature part you have to take the encoded header, the encoded payload, a secret, the algorithm specified in the header, and sign that. The signature is used to verify the message wasn't changed along the way, and, in the case of tokens signed with a private key, it can also verify that the sender of the JWT is who it says it is.\n```\nHMACSHA256(\n    base64UrlEncode(header) + \".\" +\n    base64UrlEncode(payload),\n    API_SECRET)\n```\n\n### Putting all together\nThe output is three Base64-URL strings separated by dots. The following shows a JWT that has the previous header and payload encoded, and it is signed with a secret.\n```\neyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJhZDU0YWFmZjg5ZmZkZmVmZjE3OGJiOGE4ZjM1OWIyOWZjYjIwZWRiNTYyNTBiOWY1ODRhYTJjYjAxNjJlZDRhIiwic3ViIjoiZGVtby5leGFtcGxlQGFjdHVhbHJlcG9ydHMuY29tIn0.SxO-H7UYYYsclS8RGWO1qf0z1cB1m73wF9FLl9RCc1Q\n\n// Base64 encoded header: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9\n// Base64 encoded payload: eyJpc3MiOiJhZDU0YWFmZjg5ZmZkZmVmZjE3OGJiOGE4ZjM1OWIyOWZjYjIwZWRiNTYyNTBiOWY1ODRhYTJjYjAxNjJlZDRhIiwic3ViIjoiZGVtby5leGFtcGxlQGFjdHVhbHJlcG9ydHMuY29tIn0\n// Signature: SxO-H7UYYYsclS8RGWO1qf0z1cB1m73wF9FLl9RCc1Q\n```\n\n## Temporary JWTs\nYou can create a temporary token in [Account Settings](https://pdfgeneratorapi.com/account/organization) page after you login to PDF Generator API. The generated token uses your email address as the subject (`sub`) value and is valid for __15 minutes__.\nYou can also use [jwt.io](https://jwt.io/) to generate test tokens for your API calls. These test tokens should never be used in production applications.\n*  *  *  *  *\n\n# Error codes\n\n| Code   | Description                    |\n|--------|--------------------------------|\n| 401    | Unauthorized                   |\n| 402    | Payment Required               |\n| 403    | Forbidden                      |\n| 404    | Not Found                      |\n| 422    | Unprocessable Entity           |\n| 429    | Too Many Requests              |\n| 500    | Internal Server Error          |\n\n## 401 Unauthorized\n| Description                                                             |\n|-------------------------------------------------------------------------|\n| Authentication failed: request expired                                  |\n| Authentication failed: workspace missing                                |\n| Authentication failed: key missing                                      |\n| Authentication failed: property 'iss' (issuer) missing in JWT           |\n| Authentication failed: property 'sub' (subject) missing in JWT          |\n| Authentication failed: property 'exp' (expiration time) missing in JWT  |\n| Authentication failed: incorrect signature                              |\n\n## 402 Payment Required\n| Description                                                             |\n|-------------------------------------------------------------------------|\n| Your account is suspended, please upgrade your account                  |\n\n## 403 Forbidden\n| Description                                                             |\n|-------------------------------------------------------------------------|\n| Your account has exceeded the monthly document generation limit.        |\n| Access not granted: You cannot delete master workspace via API          |\n| Access not granted: Template is not accessible by this organization     |\n| Your session has expired, please close and reopen the editor.           |\n\n## 404 Entity not found\n| Description                                                             |\n|-------------------------------------------------------------------------|\n| Entity not found                                                        |\n| Resource not found                                                      |\n| None of the templates is available for the workspace.                   |\n\n## 422 Unprocessable Entity\n| Description                                                             |\n|-------------------------------------------------------------------------|\n| Unable to parse JSON, please check formatting                           |\n| Required parameter missing                                              |\n| Required parameter missing: template definition not defined             |\n| Required parameter missing: template not defined                        |\n\n## 429 Too Many Requests\n| Description                                                             |\n|-------------------------------------------------------------------------|\n| You can make up to 2 requests per second and 60 requests per minute.   |\n\n*  *  *  *  *\n\n\n  For more information, please visit [https://support.pdfgeneratorapi.com](https://support.pdfgeneratorapi.com)\n\n*Automatically generated by the [OpenAPI Generator](https://openapi-generator.tech)*\n\n\n## Requirements\n\nBuilding the API client library requires:\n1. Java 1.8+\n2. Maven (3.8.3+)/Gradle (7.2+)\n\n## Installation\n\nTo install the API client library to your local Maven repository, simply execute:\n\n```shell\nmvn clean install\n```\n\nTo deploy it to a remote Maven repository instead, configure the settings of the repository and execute:\n\n```shell\nmvn clean deploy\n```\n\nRefer to the [OSSRH Guide](http://central.sonatype.org/pages/ossrh-guide.html) for more information.\n\n### Maven users\n\nAdd this dependency to your project's POM:\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003eorg.pdfgeneratorapi\u003c/groupId\u003e\n  \u003cartifactId\u003epdf-generator-api\u003c/artifactId\u003e\n  \u003cversion\u003e4.0.8\u003c/version\u003e\n  \u003cscope\u003ecompile\u003c/scope\u003e\n\u003c/dependency\u003e\n```\n\n### Gradle users\n\nAdd this dependency to your project's build file:\n\n```groovy\n  repositories {\n    mavenCentral()     // Needed if the 'pdf-generator-api' jar has been published to maven central.\n    mavenLocal()       // Needed if the 'pdf-generator-api' jar has been published to the local maven repo.\n  }\n\n  dependencies {\n     implementation \"org.pdfgeneratorapi:pdf-generator-api:4.0.8\"\n  }\n```\n\n### Others\n\nAt first generate the JAR by executing:\n\n```shell\nmvn clean package\n```\n\nThen manually install the following JARs:\n\n* `target/pdf-generator-api-4.0.8.jar`\n* `target/lib/*.jar`\n\n## Getting Started\n\nPlease follow the [installation](#installation) instruction and execute the following Java code:\n\n```java\n\n// Import classes:\nimport org.pdfgeneratorapi.client.ApiClient;\nimport org.pdfgeneratorapi.client.ApiException;\nimport org.pdfgeneratorapi.client.Configuration;\nimport org.pdfgeneratorapi.client.auth.*;\nimport org.pdfgeneratorapi.client.model.*;\nimport org.pdfgeneratorapi.client.api.ConversionApi;\n\npublic class Example {\n  public static void main(String[] args) {\n    ApiClient defaultClient = Configuration.getDefaultApiClient();\n    defaultClient.setBasePath(\"https://us1.pdfgeneratorapi.com/api/v4\");\n    \n    // Configure HTTP bearer authorization: JSONWebTokenAuth\n    HttpBearerAuth JSONWebTokenAuth = (HttpBearerAuth) defaultClient.getAuthentication(\"JSONWebTokenAuth\");\n    JSONWebTokenAuth.setBearerToken(\"BEARER TOKEN\");\n\n    ConversionApi apiInstance = new ConversionApi(defaultClient);\n    ConvertHTML2PDFRequest convertHTML2PDFRequest = new ConvertHTML2PDFRequest(); // ConvertHTML2PDFRequest | \n    try {\n      GenerateDocument201Response result = apiInstance.convertHTML2PDF(convertHTML2PDFRequest);\n      System.out.println(result);\n    } catch (ApiException e) {\n      System.err.println(\"Exception when calling ConversionApi#convertHTML2PDF\");\n      System.err.println(\"Status code: \" + e.getCode());\n      System.err.println(\"Reason: \" + e.getResponseBody());\n      System.err.println(\"Response headers: \" + e.getResponseHeaders());\n      e.printStackTrace();\n    }\n  }\n}\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://us1.pdfgeneratorapi.com/api/v4*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*ConversionApi* | [**convertHTML2PDF**](docs/ConversionApi.md#convertHTML2PDF) | **POST** /conversion/html2pdf | HTML to PDF\n*ConversionApi* | [**convertURL2PDF**](docs/ConversionApi.md#convertURL2PDF) | **POST** /conversion/url2pdf | URL to PDF\n*DocumentsApi* | [**deleteDocument**](docs/DocumentsApi.md#deleteDocument) | **DELETE** /documents/{publicId} | Delete document\n*DocumentsApi* | [**generateDocument**](docs/DocumentsApi.md#generateDocument) | **POST** /documents/generate | Generate document\n*DocumentsApi* | [**generateDocumentAsynchronous**](docs/DocumentsApi.md#generateDocumentAsynchronous) | **POST** /documents/generate/async | Generate document (async)\n*DocumentsApi* | [**generateDocumentBatch**](docs/DocumentsApi.md#generateDocumentBatch) | **POST** /documents/generate/batch | Generate document (batch)\n*DocumentsApi* | [**generateDocumentBatchAsynchronous**](docs/DocumentsApi.md#generateDocumentBatchAsynchronous) | **POST** /documents/generate/batch/async | Generate document (batch + async)\n*DocumentsApi* | [**getDocument**](docs/DocumentsApi.md#getDocument) | **GET** /documents/{publicId} | Get document\n*DocumentsApi* | [**getDocuments**](docs/DocumentsApi.md#getDocuments) | **GET** /documents | Get documents\n*FormsApi* | [**createFrom**](docs/FormsApi.md#createFrom) | **POST** /forms | Create form\n*FormsApi* | [**deleteForm**](docs/FormsApi.md#deleteForm) | **DELETE** /forms/{formId} | Delete form\n*FormsApi* | [**getForm**](docs/FormsApi.md#getForm) | **GET** /forms/{formId} | Get form\n*FormsApi* | [**getForms**](docs/FormsApi.md#getForms) | **GET** /forms | Get forms\n*FormsApi* | [**shareForm**](docs/FormsApi.md#shareForm) | **POST** /forms/{formId}/share | Share form\n*FormsApi* | [**updateForm**](docs/FormsApi.md#updateForm) | **PUT** /forms/{formId} | Update form\n*TemplatesApi* | [**copyTemplate**](docs/TemplatesApi.md#copyTemplate) | **POST** /templates/{templateId}/copy | Copy template\n*TemplatesApi* | [**createTemplate**](docs/TemplatesApi.md#createTemplate) | **POST** /templates | Create template\n*TemplatesApi* | [**deleteTemplate**](docs/TemplatesApi.md#deleteTemplate) | **DELETE** /templates/{templateId} | Delete template\n*TemplatesApi* | [**getTemplate**](docs/TemplatesApi.md#getTemplate) | **GET** /templates/{templateId} | Get template\n*TemplatesApi* | [**getTemplateData**](docs/TemplatesApi.md#getTemplateData) | **GET** /templates/{templateId}/data | Get template data fields\n*TemplatesApi* | [**getTemplates**](docs/TemplatesApi.md#getTemplates) | **GET** /templates | Get templates\n*TemplatesApi* | [**openEditor**](docs/TemplatesApi.md#openEditor) | **POST** /templates/{templateId}/editor | Open editor\n*TemplatesApi* | [**updateTemplate**](docs/TemplatesApi.md#updateTemplate) | **PUT** /templates/{templateId} | Update template\n*WorkspacesApi* | [**createWorkspace**](docs/WorkspacesApi.md#createWorkspace) | **POST** /workspaces | Create workspace\n*WorkspacesApi* | [**deleteWorkspace**](docs/WorkspacesApi.md#deleteWorkspace) | **DELETE** /workspaces/{workspaceIdentifier} | Delete workspace\n*WorkspacesApi* | [**getWorkspace**](docs/WorkspacesApi.md#getWorkspace) | **GET** /workspaces/{workspaceIdentifier} | Get workspace\n*WorkspacesApi* | [**getWorkspaces**](docs/WorkspacesApi.md#getWorkspaces) | **GET** /workspaces | Get workspaces\n\n\n## Documentation for Models\n\n - [AsyncOutputParam](docs/AsyncOutputParam.md)\n - [CallbackParam](docs/CallbackParam.md)\n - [Component](docs/Component.md)\n - [ConvertHTML2PDFRequest](docs/ConvertHTML2PDFRequest.md)\n - [ConvertURL2PDFRequest](docs/ConvertURL2PDFRequest.md)\n - [CopyTemplateRequest](docs/CopyTemplateRequest.md)\n - [CreateFrom201Response](docs/CreateFrom201Response.md)\n - [CreateTemplate201Response](docs/CreateTemplate201Response.md)\n - [CreateWorkspace201Response](docs/CreateWorkspace201Response.md)\n - [CreateWorkspaceRequest](docs/CreateWorkspaceRequest.md)\n - [DataBatchInner](docs/DataBatchInner.md)\n - [Document](docs/Document.md)\n - [FormActionDownload](docs/FormActionDownload.md)\n - [FormActionStore](docs/FormActionStore.md)\n - [FormConfiguration](docs/FormConfiguration.md)\n - [FormConfigurationNew](docs/FormConfigurationNew.md)\n - [FormConfigurationNewActionsInner](docs/FormConfigurationNewActionsInner.md)\n - [FormFieldsInner](docs/FormFieldsInner.md)\n - [FormatParam](docs/FormatParam.md)\n - [GenerateDocument201Response](docs/GenerateDocument201Response.md)\n - [GenerateDocument201ResponseMeta](docs/GenerateDocument201ResponseMeta.md)\n - [GenerateDocumentAsynchronous201Response](docs/GenerateDocumentAsynchronous201Response.md)\n - [GenerateDocumentAsynchronous201ResponseResponse](docs/GenerateDocumentAsynchronous201ResponseResponse.md)\n - [GenerateDocumentAsynchronousRequest](docs/GenerateDocumentAsynchronousRequest.md)\n - [GenerateDocumentBatchAsynchronousRequest](docs/GenerateDocumentBatchAsynchronousRequest.md)\n - [GenerateDocumentBatchRequest](docs/GenerateDocumentBatchRequest.md)\n - [GenerateDocumentRequest](docs/GenerateDocumentRequest.md)\n - [GetDocument200Response](docs/GetDocument200Response.md)\n - [GetDocument200ResponseMeta](docs/GetDocument200ResponseMeta.md)\n - [GetDocuments200Response](docs/GetDocuments200Response.md)\n - [GetForms200Response](docs/GetForms200Response.md)\n - [GetTemplateData200Response](docs/GetTemplateData200Response.md)\n - [GetTemplates200Response](docs/GetTemplates200Response.md)\n - [GetTemplates401Response](docs/GetTemplates401Response.md)\n - [GetTemplates402Response](docs/GetTemplates402Response.md)\n - [GetTemplates403Response](docs/GetTemplates403Response.md)\n - [GetTemplates404Response](docs/GetTemplates404Response.md)\n - [GetTemplates422Response](docs/GetTemplates422Response.md)\n - [GetTemplates429Response](docs/GetTemplates429Response.md)\n - [GetTemplates500Response](docs/GetTemplates500Response.md)\n - [GetWorkspaces200Response](docs/GetWorkspaces200Response.md)\n - [InlineObject](docs/InlineObject.md)\n - [InlineObjectResponse](docs/InlineObjectResponse.md)\n - [OpenEditor200Response](docs/OpenEditor200Response.md)\n - [OpenEditorRequest](docs/OpenEditorRequest.md)\n - [OpenEditorRequestData](docs/OpenEditorRequestData.md)\n - [OutputParam](docs/OutputParam.md)\n - [PaginationMeta](docs/PaginationMeta.md)\n - [ShareForm201Response](docs/ShareForm201Response.md)\n - [ShareForm201ResponseMeta](docs/ShareForm201ResponseMeta.md)\n - [Template](docs/Template.md)\n - [TemplateDefinition](docs/TemplateDefinition.md)\n - [TemplateDefinitionDataSettings](docs/TemplateDefinitionDataSettings.md)\n - [TemplateDefinitionEditor](docs/TemplateDefinitionEditor.md)\n - [TemplateDefinitionNew](docs/TemplateDefinitionNew.md)\n - [TemplateDefinitionNewDataSettings](docs/TemplateDefinitionNewDataSettings.md)\n - [TemplateDefinitionNewEditor](docs/TemplateDefinitionNewEditor.md)\n - [TemplateDefinitionNewLayout](docs/TemplateDefinitionNewLayout.md)\n - [TemplateDefinitionNewLayoutMargins](docs/TemplateDefinitionNewLayoutMargins.md)\n - [TemplateDefinitionNewLayoutRepeatLayout](docs/TemplateDefinitionNewLayoutRepeatLayout.md)\n - [TemplateDefinitionNewPagesInner](docs/TemplateDefinitionNewPagesInner.md)\n - [TemplateDefinitionNewPagesInnerMargins](docs/TemplateDefinitionNewPagesInnerMargins.md)\n - [TemplateDefinitionPagesInner](docs/TemplateDefinitionPagesInner.md)\n - [TemplateParam](docs/TemplateParam.md)\n - [TemplateParamData](docs/TemplateParamData.md)\n - [Workspace](docs/Workspace.md)\n\n\n\u003ca id=\"documentation-for-authorization\"\u003e\u003c/a\u003e\n## Documentation for Authorization\n\n\nAuthentication schemes defined for the API:\n\u003ca id=\"JSONWebTokenAuth\"\u003e\u003c/a\u003e\n### JSONWebTokenAuth\n\n- **Type**: HTTP Bearer Token authentication (JWT)\n\n\n## Recommendation\n\nIt's recommended to create an instance of `ApiClient` per thread in a multithreaded environment to avoid any potential issues.\n\n## Author\n\nsupport@pdfgeneratorapi.com\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpdfgeneratorapi%2Fjava-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpdfgeneratorapi%2Fjava-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpdfgeneratorapi%2Fjava-client/lists"}