Retrieves the job estimated quantity with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The job estimated quantity id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the job estimated quantity, or 404 Not Found if it doesn't exist.
job_estimated_quantity| Name | Description | Type | Additional 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": "2c73f5c8-738e-4abf-99a2-3fbd10833733",
"jobs_id": "dda9c7a9-cebf-4ae7-b531-62aed976e22b",
"article_id": "b5c9f39b-dcd9-4781-9423-fadb624204f2",
"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-16T11:06:28.8551063+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>b5c9f39b-dcd9-4781-9423-fadb624204f2</article_id> <article_name>sample string 6</article_name> <estimated_quantity>4</estimated_quantity> <id>2c73f5c8-738e-4abf-99a2-3fbd10833733</id> <is_customized>true</is_customized> <jobs_id>dda9c7a9-cebf-4ae7-b531-62aed976e22b</jobs_id> <modified_dateutc>2026-09-16T11:06:28.855Z</modified_dateutc> </job_estimated_quantity>