JobSpec_Get (Get)
- Last UpdatedNov 06, 2025
- 2 minute read
| Get | JobSpec_Get |
Resource Path:/api/JobSpec
| Name | Description | Data Type |
|---|---|---|
| woId | The work order ID for one or more jobs. | string |
| operId | The operation ID for one or more jobs. | string |
| seqNo | The sequence number for a specific job. | integer |
The response body is of type object.
Returns a JSON array that contains the job specification data for the jobs that match the filter parameters. If no matching jobs are found, an empty JSON array is returned.
The following properties are returned.
wo_id (string)
The ID of the work order.
oper_id (string)
The ID of the operation.
seq_no (integer)
The job sequence number.
step_no (integer)
The number of the step with which the specification is associated.
spec_id (string)
The ID of the specification.
spec_value (string)
The planned specification value.
act_spec_value (string)
The actual specification value.
assoc_file (string)
The path and file name of the file associated with the specification.
assoc_file_type (string)
The file type of the file associated with the specification.
comments (string)
The comments or instructions for the operator regarding the specification.
min_value (string)
The minimum acceptable value for the specification. The default is null.
max_value (string)
The maximum acceptable value for the specification. The default is null.
access_level (integer)
The security access level for modifying the specification. The default is null.
spec_desc (string)
The description of the job spec.
grp_id (string)
The ID of the spec group of which the specification is a member.
units (string)
The unit of measure for the specification value.
spare1 (string)
The contents of the specification spare1 field.
spare2 (string)
The contents of the specification spare2 field.
spare3 (string)
The contents of the specification spare3 field.
spare4 (string)
The contents of the specification spare4 field.
last_edit_comment (string)
Comments about why the record was added or updated.
last_edit_by (string)
The ID of the user who added or last updated the record.
last_edit_at (datetime)
The date and time, in UTC, that indicates when the record was added or last updated.
mod_id (timestamp)
A binary number that increments each time the row is modified.
data_type (integer)
An enumeration that indicates the data type of the specification.
0 = string (the default)
1 = floating point number
display_seq (integer)
The specifications display sequence number. The display sequence numbers are used to determine the order of specifications with their specification group when they are listed in the user interface.
To get the specification data for the job identified by work order WO20171213.2445, operation Roast, and sequence number 3:
api/JobSpec?woId=WO20171213.2445&operId=Roast&seqNo=3
Examples: Work Tasks Lookups
To get the specification data for a job identified by work order, operation, and sequence number:
api/JobSpec?woId={woId}&operId={operId}&seqNo={operId}
The jobs for which job specifications are to be retrieved are determined by the filter parameters. Passing no filter parameters will retrieve job specifications for all jobs.