GET api/GetProjects?accountNumber={accountNumber}&password={password}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountNumber | integer |
Required |
|
| password | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Project| Name | Description | Type | Additional information |
|---|---|---|---|
| Number | integer |
None. |
|
| Name | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Number": 1,
"Name": "sample string 2"
},
{
"Number": 1,
"Name": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfProject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Project>
<Number>1</Number>
<Name>sample string 2</Name>
</Project>
<Project>
<Number>1</Number>
<Name>sample string 2</Name>
</Project>
</ArrayOfProject>