Retrieves the job_estimated_quantity with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
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 | boolean | ||
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "7eadd96b-7476-4b0b-9745-a1f5c485c7a6",
"jobs_id": "de4c6b96-48df-4175-96a2-a9a3ceb17d90",
"article_id": "87f59617-25ab-45a4-910c-e26be5b24864",
"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-06-16T22:35:05.6686838+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>87f59617-25ab-45a4-910c-e26be5b24864</article_id> <article_name>sample string 6</article_name> <estimated_quantity>4</estimated_quantity> <id>7eadd96b-7476-4b0b-9745-a1f5c485c7a6</id> <is_customized>true</is_customized> <jobs_id>de4c6b96-48df-4175-96a2-a9a3ceb17d90</jobs_id> <modified_dateutc>2026-06-16T22:35:05.668Z</modified_dateutc> </job_estimated_quantity>