Retrieves all pdf template
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
pdf_template| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| sales_organization_id | globally unique identifier | ||
| print_layout_id |
Print layout id |
globally unique identifier | |
| name |
Name |
string | |
| trigger_code |
Some fixed value (Odyssee.Constant) like "JobApproval" |
string | |
| template |
Contains the layout in json format |
string | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "5a81a8ac-020c-402d-8b22-468e83a7dac9",
"sales_organization_id": "78d5fad6-1370-4ba2-8ae7-93e4ef86ca30",
"print_layout_id": "89512133-d666-430e-9267-a4aadde31eab",
"name": "sample string 4",
"trigger_code": "sample string 5",
"template": "sample string 6",
"modified_dateutc": "2026-01-11T21:03:19.0566151+00:00"
}
application/xml, text/xml
Sample:
<pdf_template xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>5a81a8ac-020c-402d-8b22-468e83a7dac9</id> <modified_dateutc>2026-01-11T21:03:19.056Z</modified_dateutc> <name>sample string 4</name> <print_layout_id>89512133-d666-430e-9267-a4aadde31eab</print_layout_id> <sales_organization_id>78d5fad6-1370-4ba2-8ae7-93e4ef86ca30</sales_organization_id> <template>sample string 6</template> <trigger_code>sample string 5</trigger_code> </pdf_template>