Retrieves the task type with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
key

project_status.id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

project_status
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of the project status

string
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
sales_organization_id

FK of sales_organization. Filled if specific of one SO, empty if can be used by all

globally unique identifier
sequence

integer
color_text

string

Response Formats

application/json, text/json

Sample:
{
  "id": "1f992745-6def-409c-9fc7-28e1fb67067e",
  "name": "sample string 2",
  "is_default": true,
  "is_closed": true,
  "sales_organization_id": "76b24e6b-001a-4772-a043-378aeca9d5e3",
  "sequence": 6,
  "color_text": "sample string 7"
}

application/xml, text/xml

Sample:
<project_status xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <color_text>sample string 7</color_text>
  <id>1f992745-6def-409c-9fc7-28e1fb67067e</id>
  <is_closed>true</is_closed>
  <is_default>true</is_default>
  <name>sample string 2</name>
  <sales_organization_id>76b24e6b-001a-4772-a043-378aeca9d5e3</sales_organization_id>
  <sequence>6</sequence>
</project_status>