Retrieves the used part with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

job_part_usage
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier

Required

jobs_id

Foreign key of jobs

globally unique identifier

Required

article_id

Foreign key of article. Can be empty if user keys in manually the object

globally unique identifier
user_id

Foreign key, user that uses this part

globally unique identifier

Required

article_stock_location_id

In case of stock management enabled, the stock that has been used

globally unique identifier
working_date

Date when the part has been used

date
code

Code of the part (filled by article.code or manually by the user)

string

Max length: 255

name

Name of the part (filled by article.name or manually by the user)

string

Max length: 255

description

Description of the part (filled by article.description or manually by the user)

string

Max length: 255

quantity

Quantity

decimal number

Required

Range: inclusive between 0.1 and 1.79769313486232E+308

price

Unit price of the part. Computed with the price logic or filled via purchase_order_details.price

decimal number
remark

Remark / Line memo

string

Max length: 255

purchase_order_details_id

Foreign key of purchase_order_details, if the line was generated based on a purchase_order_details

globally unique identifier
signed_by_company

Object was included in a job approval and signed (readonly)

boolean
job_approval_id

Foreign key to the approval this lines belongs

globally unique identifier
is_under_warranty

If the system detects that line was included in the warranty, price will be 0

boolean
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "3a84be0a-1e46-4e90-9dc9-ea785fd7bd8e",
  "jobs_id": "4539fc57-9d08-4766-a391-546138bf7cf2",
  "article_id": "01ac11f2-1172-4e76-91cc-88c6b1bb9b59",
  "user_id": "88cc4215-2fe4-427f-8946-b45d093d1af3",
  "article_stock_location_id": "91bde682-f2bd-4b0e-8f7f-53c2cc87561f",
  "working_date": "2026-02-06T05:01:06.2218772+00:00",
  "code": "sample string 7",
  "name": "sample string 8",
  "description": "sample string 9",
  "quantity": 10.0,
  "price": 11.0,
  "remark": "sample string 12",
  "purchase_order_details_id": "89671a1d-57de-4265-8902-eecc9f91c09f",
  "signed_by_company": true,
  "job_approval_id": "4093d569-a2cd-4637-9344-67d3a9d13db5",
  "is_under_warranty": true,
  "modified_dateutc": "2026-02-06T05:01:06.2218772+00:00"
}