Retrieves the pdf template with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

pdf_template
NameDescriptionTypeAdditional 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": "226e08d5-5445-46fd-9b6b-ff057f15c274",
  "sales_organization_id": "32c4b30b-89ac-4a4c-be0a-8956d8ecd7b9",
  "print_layout_id": "10f67f0b-740f-4712-b4d1-6f6f7df10911",
  "name": "sample string 4",
  "trigger_code": "sample string 5",
  "template": "sample string 6",
  "modified_dateutc": "2026-06-16T22:34:25.8731709+00:00"
}

application/xml, text/xml

Sample:
<pdf_template xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>226e08d5-5445-46fd-9b6b-ff057f15c274</id>
  <modified_dateutc>2026-06-16T22:34:25.873Z</modified_dateutc>
  <name>sample string 4</name>
  <print_layout_id>10f67f0b-740f-4712-b4d1-6f6f7df10911</print_layout_id>
  <sales_organization_id>32c4b30b-89ac-4a4c-be0a-8956d8ecd7b9</sales_organization_id>
  <template>sample string 6</template>
  <trigger_code>sample string 5</trigger_code>
</pdf_template>