Retrieves all job estimated quantities, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of job estimated quantities.

job_estimated_quantity
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier

Required

jobs_id

Foreign key of the jobs

globally unique identifier
article_id

Foreign key of the article

globally unique identifier
estimated_quantity

Estimated quantity

decimal number
article_code

Article code

string
article_name

Article name

string
article_description

Article description

string
is_customized

Indicates the article details on this line were manually customized rather than copied as-is from the article record.

boolean
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "e9898bcc-df7a-4904-beb9-21b14fe76008",
  "jobs_id": "840153f9-836d-43f9-ab9e-21a55051c5ca",
  "article_id": "ad079fee-9628-4a04-94aa-1eb37cb70ba0",
  "estimated_quantity": 4.0,
  "article_code": "sample string 5",
  "article_name": "sample string 6",
  "article_description": "sample string 7",
  "is_customized": true,
  "modified_dateutc": "2026-09-16T10:15:12.2948188+00:00"
}

application/xml, text/xml

Sample:
<job_estimated_quantity xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <article_code>sample string 5</article_code>
  <article_description>sample string 7</article_description>
  <article_id>ad079fee-9628-4a04-94aa-1eb37cb70ba0</article_id>
  <article_name>sample string 6</article_name>
  <estimated_quantity>4</estimated_quantity>
  <id>e9898bcc-df7a-4904-beb9-21b14fe76008</id>
  <is_customized>true</is_customized>
  <jobs_id>840153f9-836d-43f9-ab9e-21a55051c5ca</jobs_id>
  <modified_dateutc>2026-09-16T10:15:12.294Z</modified_dateutc>
</job_estimated_quantity>