Retrieves the contract type with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
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": "75bc7ab0-0e11-498b-a22a-0b3f8f88aaf2",
"name": "sample string 2",
"sales_organization_id": "70467f07-4bc6-46d8-9d8f-75a0ab9fae20",
"modified_dateutc": "2026-01-12T00:17:43.8173809+00:00"
}
application/xml, text/xml
Sample:
<contract_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>75bc7ab0-0e11-498b-a22a-0b3f8f88aaf2</id> <modified_dateutc>2026-01-12T00:17:43.817Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>70467f07-4bc6-46d8-9d8f-75a0ab9fae20</sales_organization_id> </contract_type>