Retrieves the contract type with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The contract type id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the contract type, or 404 Not Found if it doesn't exist.
contract_type| Name | Description | Type | Additional 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": "b5cfc9d3-0cb9-483e-947e-05caf06174fe",
"name": "sample string 2",
"sales_organization_id": "e0fe2817-9c76-4b32-904f-af266860ecb2",
"modified_dateutc": "2026-09-16T09:23:57.7638231+00:00"
}
application/xml, text/xml
Sample:
<contract_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>b5cfc9d3-0cb9-483e-947e-05caf06174fe</id> <modified_dateutc>2026-09-16T09:23:57.763Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>e0fe2817-9c76-4b32-904f-af266860ecb2</sales_organization_id> </contract_type>