Retrieves all company types, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of company types.
company_type| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary key |
globally unique identifier | |
| name |
Name of the type |
string |
Required |
| description |
Description of the type |
string | |
| sales_organization_id |
FK of sales_organization. Filled if specific of one SO, empty if can be used by all |
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": "07688d8f-2e26-466e-af28-b56aa3304c79",
"name": "sample string 2",
"description": "sample string 3",
"sales_organization_id": "5f19be86-5647-4fd6-a673-e10521ef9948",
"modified_dateutc": "2026-09-16T09:23:20.0792672+00:00"
}
application/xml, text/xml
Sample:
<company_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <description>sample string 3</description> <id>07688d8f-2e26-466e-af28-b56aa3304c79</id> <modified_dateutc>2026-09-16T09:23:20.079Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>5f19be86-5647-4fd6-a673-e10521ef9948</sales_organization_id> </company_type>