Retrieves all service_model_project_list
Request Information
URI Parameters :
None.
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": "86f73cf5-49c1-4100-b428-348d420436b3",
"service_model_id": "aabc1972-1a6d-4a22-9231-8877593b7b47",
"project_id": "98fcf1d2-b7b2-49d3-b1d1-b6ae1012a432",
"archived": true,
"date_archived": "2026-06-16T22:27:46.1367327+00:00",
"estimated_work_time": 6,
"modified_dateutc": "2026-06-16T22:27:46.1367327+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-06-16T22:27:46.136Z</date_archived> <estimated_work_time>6</estimated_work_time> <id>86f73cf5-49c1-4100-b428-348d420436b3</id> <modified_dateutc>2026-06-16T22:27:46.136Z</modified_dateutc> <project_id>98fcf1d2-b7b2-49d3-b1d1-b6ae1012a432</project_id> <service_model_id>aabc1972-1a6d-4a22-9231-8877593b7b47</service_model_id> </service_model_project_list>