GET api/ProjectNotes/GetProjectList?accountTypeId={accountTypeId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountTypeId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Project| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Value | string |
None. |
|
| IsActive | boolean |
None. |
|
| AccountTypeId | integer |
None. |
|
| ProjectNo | string |
None. |
|
| IsTimeLogEnable | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Value": "sample string 2",
"IsActive": true,
"AccountTypeId": 4,
"ProjectNo": "sample string 5",
"IsTimeLogEnable": true
},
{
"Id": 1,
"Value": "sample string 2",
"IsActive": true,
"AccountTypeId": 4,
"ProjectNo": "sample string 5",
"IsTimeLogEnable": true
}
]
application/xml, text/xml
Sample:
<ArrayOfProject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nokon.Nappen.Data.Entities">
<Project>
<AccountTypeId>4</AccountTypeId>
<Id>1</Id>
<IsActive>true</IsActive>
<IsTimeLogEnable>true</IsTimeLogEnable>
<ProjectNo>sample string 5</ProjectNo>
<Value>sample string 2</Value>
</Project>
<Project>
<AccountTypeId>4</AccountTypeId>
<Id>1</Id>
<IsActive>true</IsActive>
<IsTimeLogEnable>true</IsTimeLogEnable>
<ProjectNo>sample string 5</ProjectNo>
<Value>sample string 2</Value>
</Project>
</ArrayOfProject>