Retrieves all the job_estimated_quantity objects

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

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

boolean
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "69376c24-c24b-4643-983a-c6c9d7b49e7d",
  "jobs_id": "2b53c5de-8817-4a1d-ae7c-84104f41fc62",
  "article_id": "0e1920f5-8076-40ee-a76b-dbe43cdc89b0",
  "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-01-11T21:03:49.9912889+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>0e1920f5-8076-40ee-a76b-dbe43cdc89b0</article_id>
  <article_name>sample string 6</article_name>
  <estimated_quantity>4</estimated_quantity>
  <id>69376c24-c24b-4643-983a-c6c9d7b49e7d</id>
  <is_customized>true</is_customized>
  <jobs_id>2b53c5de-8817-4a1d-ae7c-84104f41fc62</jobs_id>
  <modified_dateutc>2026-01-11T21:03:49.991Z</modified_dateutc>
</job_estimated_quantity>