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": "4aa97853-214f-40f1-a506-32d19672e0c3",
  "jobs_id": "5fae71d0-837f-4900-938d-9bde278b679e",
  "article_id": "7a2732f2-2eb8-4f8b-965a-75363feb7bf8",
  "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-12T00:19:45.5675423+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>7a2732f2-2eb8-4f8b-965a-75363feb7bf8</article_id>
  <article_name>sample string 6</article_name>
  <estimated_quantity>4</estimated_quantity>
  <id>4aa97853-214f-40f1-a506-32d19672e0c3</id>
  <is_customized>true</is_customized>
  <jobs_id>5fae71d0-837f-4900-938d-9bde278b679e</jobs_id>
  <modified_dateutc>2026-01-12T00:19:45.567Z</modified_dateutc>
</job_estimated_quantity>