Retrieves the pdf template with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
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": "f3f80b27-0e04-4990-ae66-836ba97e6f5a",
"sales_organization_id": "c7c4da64-fa23-45eb-804c-cdc634355047",
"print_layout_id": "c47c6ea7-b012-4b08-8552-acaca61b831d",
"name": "sample string 4",
"trigger_code": "sample string 5",
"template": "sample string 6",
"modified_dateutc": "2026-03-07T13:19:11.6244363+00:00"
}
application/xml, text/xml
Sample:
<pdf_template xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>f3f80b27-0e04-4990-ae66-836ba97e6f5a</id> <modified_dateutc>2026-03-07T13:19:11.624Z</modified_dateutc> <name>sample string 4</name> <print_layout_id>c47c6ea7-b012-4b08-8552-acaca61b831d</print_layout_id> <sales_organization_id>c7c4da64-fa23-45eb-804c-cdc634355047</sales_organization_id> <template>sample string 6</template> <trigger_code>sample string 5</trigger_code> </pdf_template>