Statuses
Gets the statuses for the given project.
Select
You can use the below query to get all Statuses:SELECT * FROM Statuses
Insert
To create a new Status you can specify the following fields:
INSERT INTO Statuses (Content) VALUES ('My Custom Status')
Columns
Name | Type | ReadOnly | Description |
Id [KEY] | String | False |
Status Id. |
Content | String | False |
Status Content. |
PostedBy | String | False |
Status Posted By. |
PostedPerson | String | False |
Status Posted Person. |
PostedDate | Date | False |
Status Posted Date. |
PostedDateTime | Datetime | False |
Status Posted Date Time. |