Retrieves all project statuses, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of project statuses.
project_status| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| name |
Name of the project status |
string |
Required Max length: 50 |
| is_default |
Is default (auto selected when creating new project) |
boolean | |
| is_closed |
Inform if this status means that the project/installation is archived |
boolean |
Required |
| sales_organization_id |
FK of sales_organization. Filled if specific of one SO, empty if can be used by all |
globally unique identifier | |
| sequence |
Order in which this status should be displayed relative to other statuses. |
integer | |
| 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": "c2f1ae9c-ed27-4851-af31-f4b87f1b10ef",
"name": "sample string 2",
"is_default": true,
"is_closed": true,
"sales_organization_id": "3f3aa501-e946-45d5-8d3c-e8d19a6caabd",
"sequence": 6,
"color_text": "sample string 7",
"modified_dateutc": "2026-09-16T09:22:00.2243892+00:00"
}
application/xml, text/xml
Sample:
<project_status xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <color_text>sample string 7</color_text> <id>c2f1ae9c-ed27-4851-af31-f4b87f1b10ef</id> <is_closed>true</is_closed> <is_default>true</is_default> <modified_dateutc>2026-09-16T09:22:00.224Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>3f3aa501-e946-45d5-8d3c-e8d19a6caabd</sales_organization_id> <sequence>6</sequence> </project_status>