GET api/v2/projects/{id}
Get project by unique identificator
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ProjectDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| name |
Project name |
string |
None. |
| code |
Project code |
string |
None. |
| update-date |
Last update date |
date |
None. |
| status |
Status (active or not) |
TagvueEntityStatus |
None. |
| entity-id |
Identifying entity-id of the entity, this is expected to be unique |
string |
None. |
Response Formats
application/xml, text/xml
Sample:
<project entity-id="sample string 4" xmlns="urn:tagvue:am"> <status>inactive</status> <name>sample string 1</name> <code>sample string 2</code> <update-date>2025-11-08T04:46:16.6655457-08:00</update-date> </project>
application/json, text/json
Sample:
{
"name": "sample string 1",
"code": "sample string 2",
"update-date": "2025-11-08T04:46:16.6655457-08:00",
"status": 0,
"entity-id": "sample string 4"
}