Retrieves all status transitions, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of status transitions.

db_status_list
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
from_status_id

Foreign key of the status this transition starts from.

globally unique identifier
to_status_id

Foreign key of the status this transition leads to.

globally unique identifier
table_name

Name of the status table (e.g. "job_status", "task_status") this transition applies to.

string
sequence

Order in which this transition should be displayed relative to other transitions.

integer
sys_logical_delete

Soft-delete flag: when true, this transition is considered deleted, optimizing synchronization (can be physically deleted offline).

boolean
action_text

Display text of the action that triggers this transition (e.g. a button label).

string

Max length: 255

sys_readonly

Readonly: indicates this transition is system-defined and cannot be modified/deleted by users.

boolean
used_in

Free-text list of contexts/screens where this transition is used.

string

Max length: 255

modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "5639a629-8b56-4310-8429-069bd4aceaee",
  "from_status_id": "5ec25599-5a53-4837-ad96-348adb4b9c78",
  "to_status_id": "16ee4e59-71f6-4353-ab41-ef0791c3e17f",
  "table_name": "sample string 4",
  "sequence": 5,
  "sys_logical_delete": true,
  "action_text": "sample string 7",
  "sys_readonly": true,
  "used_in": "sample string 8",
  "modified_dateutc": "2026-09-16T10:12:40.0740248+00:00"
}

application/xml, text/xml

Sample:
<db_status_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <action_text>sample string 7</action_text>
  <from_status_id>5ec25599-5a53-4837-ad96-348adb4b9c78</from_status_id>
  <id>5639a629-8b56-4310-8429-069bd4aceaee</id>
  <modified_dateutc>2026-09-16T10:12:40.074Z</modified_dateutc>
  <sequence>5</sequence>
  <sys_logical_delete>true</sys_logical_delete>
  <sys_readonly>true</sys_readonly>
  <table_name>sample string 4</table_name>
  <to_status_id>16ee4e59-71f6-4353-ab41-ef0791c3e17f</to_status_id>
  <used_in>sample string 8</used_in>
</db_status_list>