Retrieves all company sales statuses, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of company sales statuses.
company_sales_status| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary key |
globally unique identifier | |
| name |
Name of this sales status. |
string |
Required |
| description |
Free-text description of this sales status. |
string | |
| color_text |
Display color (e.g. hex code) used to render this status in the UI. |
string | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "a0c9421d-2636-4ef3-a85c-a8ff9155862d",
"name": "sample string 2",
"description": "sample string 3",
"color_text": "sample string 4",
"modified_dateutc": "2026-09-16T09:24:07.2617586+00:00"
}
application/xml, text/xml
Sample:
<company_sales_status xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <color_text>sample string 4</color_text> <description>sample string 3</description> <id>a0c9421d-2636-4ef3-a85c-a8ff9155862d</id> <modified_dateutc>2026-09-16T09:24:07.261Z</modified_dateutc> <name>sample string 2</name> </company_sales_status>