Retrieves the job_estimated_quantity with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

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": "40cdb434-4ec0-4987-bc3f-337e3552bd26",
  "jobs_id": "5f92a8d8-6574-4ab4-82e2-8d62e5e74a42",
  "article_id": "4b28a996-c8ae-4063-bfdb-2195e04c2e9e",
  "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-03-07T13:18:19.5283208+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>4b28a996-c8ae-4063-bfdb-2195e04c2e9e</article_id>
  <article_name>sample string 6</article_name>
  <estimated_quantity>4</estimated_quantity>
  <id>40cdb434-4ec0-4987-bc3f-337e3552bd26</id>
  <is_customized>true</is_customized>
  <jobs_id>5f92a8d8-6574-4ab4-82e2-8d62e5e74a42</jobs_id>
  <modified_dateutc>2026-03-07T13:18:19.528Z</modified_dateutc>
</job_estimated_quantity>