Retrieves all service model/project links, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of service model/project links.
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 |
Indicates whether this service-model-to-project link has been archived (no longer active). |
boolean | |
| date_archived |
Date and time this link was archived. |
date | |
| estimated_work_time |
Estimated work time, in minutes, for jobs generated under this service model on this project. |
integer | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "cb7cfa21-1872-4690-8783-c4f2cca229b5",
"service_model_id": "703e61c8-48b8-4ae4-848b-0bc436e35e71",
"project_id": "c9343fdb-2b30-46f1-939b-06cc7bfb27bb",
"archived": true,
"date_archived": "2026-09-16T10:10:13.850503+00:00",
"estimated_work_time": 6,
"modified_dateutc": "2026-09-16T10:10:13.850503+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-09-16T10:10:13.850Z</date_archived> <estimated_work_time>6</estimated_work_time> <id>cb7cfa21-1872-4690-8783-c4f2cca229b5</id> <modified_dateutc>2026-09-16T10:10:13.850Z</modified_dateutc> <project_id>c9343fdb-2b30-46f1-939b-06cc7bfb27bb</project_id> <service_model_id>703e61c8-48b8-4ae4-848b-0bc436e35e71</service_model_id> </service_model_project_list>