Retrieves the PDF template with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The PDF template id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the PDF template, or 404 Not Found if it doesn't exist.
pdf_template| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| sales_organization_id |
Foreign key of the sales organization this template belongs to. |
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": "8e844f0a-fb30-4359-b049-2cdbcbf5c1e1",
"sales_organization_id": "e7d6564b-40ca-4222-8133-1c446c7c5341",
"print_layout_id": "b0d31a79-573c-476e-b986-88f137398c34",
"name": "sample string 4",
"trigger_code": "sample string 5",
"template": "sample string 6",
"modified_dateutc": "2026-09-16T08:36:41.0985159+00:00"
}
application/xml, text/xml
Sample:
<pdf_template xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>8e844f0a-fb30-4359-b049-2cdbcbf5c1e1</id> <modified_dateutc>2026-09-16T08:36:41.098Z</modified_dateutc> <name>sample string 4</name> <print_layout_id>b0d31a79-573c-476e-b986-88f137398c34</print_layout_id> <sales_organization_id>e7d6564b-40ca-4222-8133-1c446c7c5341</sales_organization_id> <template>sample string 6</template> <trigger_code>sample string 5</trigger_code> </pdf_template>