GET api/ProjectApproval/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ProjectApprovalViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectApprovalId | integer |
None. |
|
| ProjectId | integer |
None. |
|
| ApprovalTemplateId | integer |
None. |
|
| UserId | integer |
None. |
|
| SubmittedDateTime | date |
None. |
|
| ApprovedDateTime | date |
None. |
|
| ApprovalComments | string |
None. |
|
| ProjectCode | string |
None. |
|
| ProjectName | string |
None. |
|
| ApprovalTemplateName | string |
None. |
|
| ApprovalStatusId | integer |
None. |
|
| Level | integer |
None. |
|
| ApprovalFlag | integer |
None. |
|
| UserName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ProjectApprovalId": 1,
"ProjectId": 2,
"ApprovalTemplateId": 3,
"UserId": 4,
"SubmittedDateTime": "2026-01-27T17:55:16.1885941+05:30",
"ApprovedDateTime": "2026-01-27T17:55:16.1885941+05:30",
"ApprovalComments": "sample string 6",
"ProjectCode": "sample string 7",
"ProjectName": "sample string 8",
"ApprovalTemplateName": "sample string 9",
"ApprovalStatusId": 10,
"Level": 11,
"ApprovalFlag": 12,
"UserName": "sample string 13"
}
application/xml, text/xml
Sample:
<ProjectApprovalViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Web.Api.ViewModel"> <ApprovalComments>sample string 6</ApprovalComments> <ApprovalFlag>12</ApprovalFlag> <ApprovalStatusId>10</ApprovalStatusId> <ApprovalTemplateId>3</ApprovalTemplateId> <ApprovalTemplateName>sample string 9</ApprovalTemplateName> <ApprovedDateTime>2026-01-27T17:55:16.1885941+05:30</ApprovedDateTime> <Level>11</Level> <ProjectApprovalId>1</ProjectApprovalId> <ProjectCode>sample string 7</ProjectCode> <ProjectId>2</ProjectId> <ProjectName>sample string 8</ProjectName> <SubmittedDateTime>2026-01-27T17:55:16.1885941+05:30</SubmittedDateTime> <UserId>4</UserId> <UserName>sample string 13</UserName> </ProjectApprovalViewModel>