Retrieves all service_model_project_list

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

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

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": "45e21849-1886-4d28-aaa3-c19f01ab6cd3",
  "service_model_id": "4663da4b-fb1d-463d-b63b-dc6ab6b305ed",
  "project_id": "178db55c-33c8-435a-8125-09f9b7acb54f",
  "archived": true,
  "date_archived": "2026-01-11T20:58:45.5200873+00:00",
  "estimated_work_time": 6,
  "modified_dateutc": "2026-01-11T20:58:45.5200873+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-11T20:58:45.520Z</date_archived>
  <estimated_work_time>6</estimated_work_time>
  <id>45e21849-1886-4d28-aaa3-c19f01ab6cd3</id>
  <modified_dateutc>2026-01-11T20:58:45.520Z</modified_dateutc>
  <project_id>178db55c-33c8-435a-8125-09f9b7acb54f</project_id>
  <service_model_id>4663da4b-fb1d-463d-b63b-dc6ab6b305ed</service_model_id>
</service_model_project_list>