GET api/AppStatus/StatusChange/{description}/{direction}
Get a list of AppStatuss specific for reverting description = the description of the status, this will determine what gets returned in the list direction = F for forward B for backward
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| description | string |
Required |
|
| direction | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AppStatusDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Description | string |
None. |
|
| InsertBy | integer |
None. |
|
| InsertDate | date |
None. |
|
| IsActive | boolean |
None. |
|
| UpdateBy | integer |
None. |
|
| UpdateDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Description": "sample string 2",
"InsertBy": 1,
"InsertDate": "2025-11-05T10:27:23.2016507-07:00",
"IsActive": true,
"UpdateBy": 1,
"UpdateDate": "2025-11-05T10:27:23.2016507-07:00"
},
{
"Id": 1,
"Description": "sample string 2",
"InsertBy": 1,
"InsertDate": "2025-11-05T10:27:23.2016507-07:00",
"IsActive": true,
"UpdateBy": 1,
"UpdateDate": "2025-11-05T10:27:23.2016507-07:00"
}
]
text/html
Sample:
[{"Id":1,"Description":"sample string 2","InsertBy":1,"InsertDate":"2025-11-05T10:27:23.2016507-07:00","IsActive":true,"UpdateBy":1,"UpdateDate":"2025-11-05T10:27:23.2016507-07:00"},{"Id":1,"Description":"sample string 2","InsertBy":1,"InsertDate":"2025-11-05T10:27:23.2016507-07:00","IsActive":true,"UpdateBy":1,"UpdateDate":"2025-11-05T10:27:23.2016507-07:00"}]
application/xml, text/xml
Sample:
<ArrayOfAppStatusDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrainingFundREST._DAL">
<AppStatusDTO>
<Description>sample string 2</Description>
<Id>1</Id>
<InsertBy>1</InsertBy>
<InsertDate>2025-11-05T10:27:23.2016507-07:00</InsertDate>
<IsActive>true</IsActive>
<UpdateBy>1</UpdateBy>
<UpdateDate>2025-11-05T10:27:23.2016507-07:00</UpdateDate>
</AppStatusDTO>
<AppStatusDTO>
<Description>sample string 2</Description>
<Id>1</Id>
<InsertBy>1</InsertBy>
<InsertDate>2025-11-05T10:27:23.2016507-07:00</InsertDate>
<IsActive>true</IsActive>
<UpdateBy>1</UpdateBy>
<UpdateDate>2025-11-05T10:27:23.2016507-07:00</UpdateDate>
</AppStatusDTO>
</ArrayOfAppStatusDTO>