Retrieves the service_model_project_list with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
service_model_project_list| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier |
Required |
| service_model_id |
FK of service_model |
globally unique identifier | |
| project_id |
FK of project |
globally unique identifier | |
| archived | boolean | ||
| date_archived | date | ||
| estimated_work_time | integer | ||
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "79b305bd-9591-49ad-8f16-ae986d167861",
"service_model_id": "a411722d-d340-4fb0-8ba5-f1ab229e73ac",
"project_id": "f258b1b3-6749-4b1f-977e-a4e89e4304ee",
"archived": true,
"date_archived": "2026-01-11T23:49:04.9403786+00:00",
"estimated_work_time": 6,
"modified_dateutc": "2026-01-11T23:49:04.9403786+00:00"
}
application/xml, text/xml
Sample:
<service_model_project_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <archived>true</archived> <date_archived>2026-01-11T23:49:04.940Z</date_archived> <estimated_work_time>6</estimated_work_time> <id>79b305bd-9591-49ad-8f16-ae986d167861</id> <modified_dateutc>2026-01-11T23:49:04.940Z</modified_dateutc> <project_id>f258b1b3-6749-4b1f-977e-a4e89e4304ee</project_id> <service_model_id>a411722d-d340-4fb0-8ba5-f1ab229e73ac</service_model_id> </service_model_project_list>