Retrieves the company sales status with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The company sales status id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the company sales status, or 404 Not Found if it doesn't exist.
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": "62ee098d-52d5-4c7f-b6aa-6230fed0cf00",
"name": "sample string 2",
"description": "sample string 3",
"color_text": "sample string 4",
"modified_dateutc": "2026-09-16T11:04:57.9638446+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>62ee098d-52d5-4c7f-b6aa-6230fed0cf00</id> <modified_dateutc>2026-09-16T11:04:57.963Z</modified_dateutc> <name>sample string 2</name> </company_sales_status>