Retrieves all contract types, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of contract types.

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": "6b243bf2-8439-400d-9760-4e419ebf9b3f",
  "name": "sample string 2",
  "sales_organization_id": "775aa4cc-6e0b-4cd1-aa28-ebe105335212",
  "modified_dateutc": "2026-09-16T10:12:31.4460632+00:00"
}

application/xml, text/xml

Sample:
<contract_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>6b243bf2-8439-400d-9760-4e419ebf9b3f</id>
  <modified_dateutc>2026-09-16T10:12:31.446Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>775aa4cc-6e0b-4cd1-aa28-ebe105335212</sales_organization_id>
</contract_type>