PdfTemplateApi
All URIs are relative to /api
| Method | HTTP request | Description |
|---|---|---|
| create | POST /pdf-template | Create a template |
| createFiles | POST /pdf-template/{id}/files | Upload template files |
| createFromZip | POST /pdf-template/from-zip | Create template from ZIP |
| deleteFile | DELETE /pdf-template/{id}/files/{file} | Delete a file |
| destroy | DELETE /pdf-template/{lookup} | Delete a template |
| exportAsZip | GET /pdf-template/{id}/files/export-zip | Export template files as ZIP archive |
| getContextSchema | GET /pdf-template/{id}/context-schema | Get JSON schema for template variables |
| getDefaultValues | GET /pdf-template/{id}/variables-default-values | Get template variable default values |
| getFileContent | GET /pdf-template/{id}/files/content/{file} | Download file content |
| getFileType | GET /pdf-template/{id}/files/type/{file} | Get file type |
| importZip | POST /pdf-template/{id}/files/import-zip | Upload files from ZIP |
| list | GET /pdf-template | List templates |
| listFiles | GET /pdf-template/{id}/files | List template files |
| render | POST /pdf-template/render | Render a PDF |
| replace | PUT /pdf-template/{lookup} | Replace a template |
| retrieve | GET /pdf-template/{lookup} | Get a template |
| update | PATCH /pdf-template/{lookup} | Update a template |
create
PdfTemplate create(createPdfTemplateDto, limit, offset, order, filter, or, expand)
Create a template
Create a new PDF template (Admin only)
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { CreateRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// CreatePdfTemplateDto
createPdfTemplateDto: ...,
// number (optional)
limit: 8.14,
// number (optional)
offset: 8.14,
// Array<string> (optional)
order: ...,
// Array<string> (optional)
filter: ...,
// Array<string> (optional)
or: ...,
// Array<string> (optional)
expand: ...,
} satisfies CreateRequest;
try {
const data = await api.create(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| createPdfTemplateDto | CreatePdfTemplateDto | ||
| limit | number | [Optional] [Defaults to undefined] | |
| offset | number | [Optional] [Defaults to undefined] | |
| order | Array<string> | [Optional] | |
| filter | Array<string> | [Optional] | |
| or | Array<string> | [Optional] | |
| expand | Array<string> | [Optional] |
Return type
Authorization
HTTP request headers
- Content-Type:
application/json - Accept:
application/json
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 2XX | Create new PdfTemplate | - |
| 4XX | - | |
| 5XX | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
createFiles
Array<TemplateFilesResponseDto> createFiles(id)
Upload template files
Upload HTML/CSS/JS files for a template. Send files as multipart form fields keyed by filename.
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { CreateFilesRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// string | Template ID
id: id_example,
} satisfies CreateFilesRequest;
try {
const data = await api.createFiles(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | Template ID | [Defaults to undefined] |
Return type
Array<TemplateFilesResponseDto>
Authorization
HTTP request headers
- Content-Type:
multipart/form-data - Accept:
application/json
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 200 | - | |
| 201 | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
createFromZip
createFromZip(file)
Create template from ZIP
Upload a ZIP archive to create a new template. If a template.yaml is present, its whitelisted settings are applied (including the template name).
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { CreateFromZipRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// Blob | ZIP file containing template files (optional)
file: BINARY_DATA_HERE,
} satisfies CreateFromZipRequest;
try {
const data = await api.createFromZip(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| file | Blob | ZIP file containing template files | [Optional] [Defaults to undefined] |
Return type
void (Empty response body)
Authorization
HTTP request headers
- Content-Type:
multipart/form-data - Accept: Not defined
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 201 | Template created from ZIP | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
deleteFile
deleteFile(id, file)
Delete a file
Delete a file from a template
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { DeleteFileRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// string | Template ID
id: id_example,
// any | File path relative to template root
file: ...,
} satisfies DeleteFileRequest;
try {
const data = await api.deleteFile(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | Template ID | [Defaults to undefined] |
| file | any | File path relative to template root | [Defaults to undefined] |
Return type
void (Empty response body)
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept:
application/json
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 200 | File was deleted successfully | - |
| 404 | File not found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
destroy
destroy(lookup)
Delete a template
Delete a template and all its files (Admin only)
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { DestroyRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// number
lookup: 8.14,
} satisfies DestroyRequest;
try {
const data = await api.destroy(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| lookup | number | [Defaults to undefined] |
Return type
void (Empty response body)
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept:
application/json
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 2XX | Delete PdfTemplate by id | - |
| 4XX | - | |
| 5XX | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
exportAsZip
exportAsZip(id)
Export template files as ZIP archive
Download all template files bundled as a ZIP archive. Includes a Content-Disposition header with the template name.
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { ExportAsZipRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// string | Template ID
id: id_example,
} satisfies ExportAsZipRequest;
try {
const data = await api.exportAsZip(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | Template ID | [Defaults to undefined] |
Return type
void (Empty response body)
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 200 | ZIP file containing template files | - |
| 404 | Template has no files | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getContextSchema
GetContextSchema200Response getContextSchema(id)
Get JSON schema for template variables
Returns the JSON schema that can be used to validate variable values for a template
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { GetContextSchemaRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// string | Template ID
id: id_example,
} satisfies GetContextSchemaRequest;
try {
const data = await api.getContextSchema(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | Template ID | [Defaults to undefined] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept:
application/json
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 200 | - | |
| 404 | Template not found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getDefaultValues
GetDefaultValues200Response getDefaultValues(id)
Get template variable default values
Returns the default values and metadata for a template
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { GetDefaultValuesRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// string | Template ID
id: id_example,
} satisfies GetDefaultValuesRequest;
try {
const data = await api.getDefaultValues(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | Template ID | [Defaults to undefined] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept:
application/json
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 200 | - | |
| 404 | Template not found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getFileContent
Blob getFileContent(id, file, ifNoneMatch)
Download file content
Download a template file by path. Supports ETag-based caching.
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { GetFileContentRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// string | Template ID
id: id_example,
// string | File path relative to template root
file: file_example,
// string | ETag from previous response for conditional download (optional)
ifNoneMatch: ifNoneMatch_example,
} satisfies GetFileContentRequest;
try {
const data = await api.getFileContent(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | Template ID | [Defaults to undefined] |
| file | string | File path relative to template root | [Defaults to undefined] |
| ifNoneMatch | string | ETag from previous response for conditional download | [Optional] [Defaults to undefined] |
Return type
Blob
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept:
*/*,application/json
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 200 | - | |
| 404 | File not found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getFileType
TemplateFile getFileType(id, file)
Get file type
Get the MIME type of a template file
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { GetFileTypeRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// string | Template ID
id: id_example,
// any | File path relative to template root
file: ...,
} satisfies GetFileTypeRequest;
try {
const data = await api.getFileType(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | Template ID | [Defaults to undefined] |
| file | any | File path relative to template root | [Defaults to undefined] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept:
application/json
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 200 | - | |
| 404 | File not found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
importZip
importZip(id, file)
Upload files from ZIP
Upload a ZIP archive containing template files. Files are extracted and stored under the template.
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { ImportZipRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// string | Template ID
id: id_example,
// Blob | ZIP file containing template files (optional)
file: BINARY_DATA_HERE,
} satisfies ImportZipRequest;
try {
const data = await api.importZip(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | Template ID | [Defaults to undefined] |
| file | Blob | ZIP file containing template files | [Optional] [Defaults to undefined] |
Return type
void (Empty response body)
Authorization
HTTP request headers
- Content-Type:
multipart/form-data - Accept: Not defined
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 201 | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
list
PdfTemplateListResponseDto list(limit, offset, order, filter, or, expand)
List templates
Returns a paginated list of PDF templates for the organization
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { ListRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// number (optional)
limit: 8.14,
// number (optional)
offset: 8.14,
// Array<string> (optional)
order: ...,
// Array<string> (optional)
filter: ...,
// Array<string> (optional)
or: ...,
// Array<string> (optional)
expand: ...,
} satisfies ListRequest;
try {
const data = await api.list(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| limit | number | [Optional] [Defaults to undefined] | |
| offset | number | [Optional] [Defaults to undefined] | |
| order | Array<string> | [Optional] | |
| filter | Array<string> | [Optional] | |
| or | Array<string> | [Optional] | |
| expand | Array<string> | [Optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept:
application/json
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 2XX | Returns a list of PdfTemplate | - |
| 4XX | - | |
| 5XX | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
listFiles
FileListResultDto listFiles(id, start, limit, nameFilter)
List template files
List all files for a template
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { ListFilesRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// string | Template ID
id: id_example,
// string | Pagination start token (optional)
start: start_example,
// number | Maximum number of files to return (optional)
limit: 8.14,
// string | Filter by filename (partial match) (optional)
nameFilter: nameFilter_example,
} satisfies ListFilesRequest;
try {
const data = await api.listFiles(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | Template ID | [Defaults to undefined] |
| start | string | Pagination start token | [Optional] [Defaults to undefined] |
| limit | number | Maximum number of files to return | [Optional] [Defaults to undefined] |
| nameFilter | string | Filter by filename (partial match) | [Optional] [Defaults to undefined] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept:
application/json
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 200 | - | |
| 404 | Template not found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
render
RenderPdfResultDto render(renderPdfTemplateDto)
Render a PDF
Render a PDF from a template. Provide template ID, context variables, and optional metadata. The rendered PDF is saved and its download key is returned.
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { RenderRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// RenderPdfTemplateDto
renderPdfTemplateDto: ...,
} satisfies RenderRequest;
try {
const data = await api.render(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| renderPdfTemplateDto | RenderPdfTemplateDto |
Return type
Authorization
HTTP request headers
- Content-Type:
application/json - Accept:
application/json
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 200 | PDF was rendered successfully | - |
| 401 | Invalid or missing API key | - |
| 404 | Template or user not found | - |
| 422 | Validation error in request body | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
replace
PdfTemplate replace(lookup, createPdfTemplateDto, limit, offset, order, filter, or, expand)
Replace a template
Fully replace a template (Admin only)
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { ReplaceRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// number
lookup: 8.14,
// CreatePdfTemplateDto
createPdfTemplateDto: ...,
// number (optional)
limit: 8.14,
// number (optional)
offset: 8.14,
// Array<string> (optional)
order: ...,
// Array<string> (optional)
filter: ...,
// Array<string> (optional)
or: ...,
// Array<string> (optional)
expand: ...,
} satisfies ReplaceRequest;
try {
const data = await api.replace(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| lookup | number | [Defaults to undefined] | |
| createPdfTemplateDto | CreatePdfTemplateDto | ||
| limit | number | [Optional] [Defaults to undefined] | |
| offset | number | [Optional] [Defaults to undefined] | |
| order | Array<string> | [Optional] | |
| filter | Array<string> | [Optional] | |
| or | Array<string> | [Optional] | |
| expand | Array<string> | [Optional] |
Return type
Authorization
HTTP request headers
- Content-Type:
application/json - Accept:
application/json
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 2XX | Replace PdfTemplate by id | - |
| 4XX | - | |
| 5XX | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
retrieve
PdfTemplate retrieve(lookup, limit, offset, order, filter, or, expand)
Get a template
Get a single PDF template by ID
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { RetrieveRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// number
lookup: 8.14,
// number (optional)
limit: 8.14,
// number (optional)
offset: 8.14,
// Array<string> (optional)
order: ...,
// Array<string> (optional)
filter: ...,
// Array<string> (optional)
or: ...,
// Array<string> (optional)
expand: ...,
} satisfies RetrieveRequest;
try {
const data = await api.retrieve(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| lookup | number | [Defaults to undefined] | |
| limit | number | [Optional] [Defaults to undefined] | |
| offset | number | [Optional] [Defaults to undefined] | |
| order | Array<string> | [Optional] | |
| filter | Array<string> | [Optional] | |
| or | Array<string> | [Optional] | |
| expand | Array<string> | [Optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept:
application/json
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 2XX | Retrieve PdfTemplate by id | - |
| 4XX | - | |
| 5XX | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
update
PdfTemplate update(lookup, updatePdfTemplateDto, limit, offset, order, filter, or, expand)
Update a template
Partially update a template (Admin only)
Example
import {
Configuration,
PdfTemplateApi,
} from '@pdf-generator/client';
import type { UpdateRequest } from '@pdf-generator/client';
async function example() {
console.log("🚀 Testing @pdf-generator/client SDK...");
const config = new Configuration({
// To configure API key authorization: api-key
apiKey: "YOUR API KEY",
});
const api = new PdfTemplateApi(config);
const body = {
// number
lookup: 8.14,
// UpdatePdfTemplateDto
updatePdfTemplateDto: ...,
// number (optional)
limit: 8.14,
// number (optional)
offset: 8.14,
// Array<string> (optional)
order: ...,
// Array<string> (optional)
filter: ...,
// Array<string> (optional)
or: ...,
// Array<string> (optional)
expand: ...,
} satisfies UpdateRequest;
try {
const data = await api.update(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
// Run the test
example().catch(console.error);
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| lookup | number | [Defaults to undefined] | |
| updatePdfTemplateDto | UpdatePdfTemplateDto | ||
| limit | number | [Optional] [Defaults to undefined] | |
| offset | number | [Optional] [Defaults to undefined] | |
| order | Array<string> | [Optional] | |
| filter | Array<string> | [Optional] | |
| or | Array<string> | [Optional] | |
| expand | Array<string> | [Optional] |
Return type
Authorization
HTTP request headers
- Content-Type:
application/json - Accept:
application/json
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 2XX | Update/patch PdfTemplate by id | - |
| 4XX | - | |
| 5XX | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]