GET v1/projects
Return all projects in the account.
Response Information
Array of projects
Response body formats
application/json, text/json
Sample:
[
{
"Name": "sample string 1",
"ID": 2
},
{
"Name": "sample string 1",
"ID": 2
}
]
application/xml, text/xml
Sample:
<ArrayOfProject xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Project>
<Name>sample string 1</Name>
<ID>2</ID>
</Project>
<Project>
<Name>sample string 1</Name>
<ID>2</ID>
</Project>
</ArrayOfProject>