Retrieves the contract type with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

contract_type
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of the contract type

string
sales_organization_id

sales_organization_id filter when synching

globally unique identifier
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "97d5d781-ec70-4928-8aa6-b2ec7aeb7bd1",
  "name": "sample string 2",
  "sales_organization_id": "9789debb-e85a-408d-85f6-d6041c8d77c5",
  "modified_dateutc": "2026-06-16T22:32:02.7736986+00:00"
}

application/xml, text/xml

Sample:
<contract_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>97d5d781-ec70-4928-8aa6-b2ec7aeb7bd1</id>
  <modified_dateutc>2026-06-16T22:32:02.773Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>9789debb-e85a-408d-85f6-d6041c8d77c5</sales_organization_id>
</contract_type>