Retrieves the service model/project link with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The service model/project link id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the service model/project link, or 404 Not Found if it doesn't exist.

service_model_project_list
NameDescriptionTypeAdditional 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": "9ef16d90-32eb-46da-8008-abf9fc79487e",
  "service_model_id": "aeb9c2e2-3ce2-4d79-933f-45df6f95e668",
  "project_id": "846ed868-759b-4b1d-bd41-b6b755843a6c",
  "archived": true,
  "date_archived": "2026-09-16T08:34:13.9255383+00:00",
  "estimated_work_time": 6,
  "modified_dateutc": "2026-09-16T08:34:13.9255383+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-16T08:34:13.925Z</date_archived>
  <estimated_work_time>6</estimated_work_time>
  <id>9ef16d90-32eb-46da-8008-abf9fc79487e</id>
  <modified_dateutc>2026-09-16T08:34:13.925Z</modified_dateutc>
  <project_id>846ed868-759b-4b1d-bd41-b6b755843a6c</project_id>
  <service_model_id>aeb9c2e2-3ce2-4d79-933f-45df6f95e668</service_model_id>
</service_model_project_list>