PUT api/ApplicationFinalReport

Update an Application Final Report record If IsComplete is set (true) it means that the Final Report is to be submitted and validated; otherwise no validation takes place and the record is just updated.

Request Information

URI Parameters

None.

Body Parameters

ApplicationFinalReportDTO
NameDescriptionTypeAdditional information
Id

integer

None.

ApplicationID

integer

None.

BusinessID

integer

None.

UpdateBy

integer

None.

UpdateDate

date

None.

WDTFUpdateBy

integer

None.

WDTFUpdateDate

date

None.

InsertBy

integer

None.

InsertDate

date

None.

SubmitDate

date

None.

IsComplete

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "ApplicationID": 2,
  "BusinessID": 3,
  "UpdateBy": 1,
  "UpdateDate": "2025-04-29T09:22:16.4208136-06:00",
  "WDTFUpdateBy": 1,
  "WDTFUpdateDate": "2025-04-29T09:22:16.4208136-06:00",
  "InsertBy": 4,
  "InsertDate": "2025-04-29T09:22:16.4208136-06:00",
  "SubmitDate": "2025-04-29T09:22:16.4208136-06:00",
  "IsComplete": true
}

text/html

Sample:
{"Id":1,"ApplicationID":2,"BusinessID":3,"UpdateBy":1,"UpdateDate":"2025-04-29T09:22:16.4208136-06:00","WDTFUpdateBy":1,"WDTFUpdateDate":"2025-04-29T09:22:16.4208136-06:00","InsertBy":4,"InsertDate":"2025-04-29T09:22:16.4208136-06:00","SubmitDate":"2025-04-29T09:22:16.4208136-06:00","IsComplete":true}

application/xml, text/xml

Sample:
<ApplicationFinalReportDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrainingFundREST._DAL">
  <ApplicationID>2</ApplicationID>
  <BusinessID>3</BusinessID>
  <Id>1</Id>
  <InsertBy>4</InsertBy>
  <InsertDate>2025-04-29T09:22:16.4208136-06:00</InsertDate>
  <IsComplete>true</IsComplete>
  <SubmitDate>2025-04-29T09:22:16.4208136-06:00</SubmitDate>
  <UpdateBy>1</UpdateBy>
  <UpdateDate>2025-04-29T09:22:16.4208136-06:00</UpdateDate>
  <WDTFUpdateBy>1</WDTFUpdateBy>
  <WDTFUpdateDate>2025-04-29T09:22:16.4208136-06:00</WDTFUpdateDate>
</ApplicationFinalReportDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

StatusDTO

StatusDTO
NameDescriptionTypeAdditional information
id

integer

None.

msg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "msg": "sample string 1"
}

text/html

Sample:
{"id":1,"msg":"sample string 1"}

application/xml, text/xml

Sample:
<StatusDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrainingFundREST._DAL">
  <id>1</id>
  <msg>sample string 1</msg>
</StatusDTO>