GET api/projects/{id}
Retrieves detailed information about a specific project by its ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The unique identifier of the project to retrieve. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
On success: HTTP 200 OK with detailed project information. On failure: HTTP 400 Bad Request with a generic error message.
SDProject| Name | Description | Type | Additional information |
|---|---|---|---|
| projectCode |
Project Code\Number |
string |
None. |
| startDate |
Project Start Date |
date |
None. |
| endDate |
Project End Date |
date |
None. |
| createDate |
Project Create Date |
date |
None. |
| milestone |
Current milestone |
integer |
None. |
| accessLevel |
Access level the current user has to this project |
integer |
None. |
| subProjects |
Sub projects for this project |
Collection of SDProject |
None. |
| customFields |
A list of all custom fields requested, this is custom meta data that can be associated with a project |
Collection of DataViewColumn |
None. |
| layout |
Layout used for this project |
LayoutInfo |
None. |
| i_node |
Unique database id of the item |
integer |
None. |
| f_node |
Unique database id of the item's parent, this is needed sometimes to figure out the structure of the content |
integer |
None. |
| item |
Name\Title of the item |
string |
None. |
| description |
Description of the item |
string |
None. |
| creator |
User details who created the item |
ViewUserDTO |
None. |
| status |
Current status of the item |
string |
None. |
Response Formats
application/json, text/json, application/scim+json
Sample not available.