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": "02cebbc6-88d3-4b8b-b489-a10349c5cf5f",
"sales_organization_id": "eee1787b-f999-4a87-a253-1b6c907ce5fd",
"print_layout_id": "f83c03f3-1d1f-483b-b8c9-e17fdc148656",
"name": "sample string 4",
"trigger_code": "sample string 5",
"template": "sample string 6",
"modified_dateutc": "2026-06-16T22:30:54.1756161+00:00"
}
application/xml, text/xml
Sample:
<pdf_template xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>02cebbc6-88d3-4b8b-b489-a10349c5cf5f</id> <modified_dateutc>2026-06-16T22:30:54.175Z</modified_dateutc> <name>sample string 4</name> <print_layout_id>f83c03f3-1d1f-483b-b8c9-e17fdc148656</print_layout_id> <sales_organization_id>eee1787b-f999-4a87-a253-1b6c907ce5fd</sales_organization_id> <template>sample string 6</template> <trigger_code>sample string 5</trigger_code> </pdf_template>