Retrieves the work instruction action type with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The work instruction action type id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the work instruction action type, or 404 Not Found if it doesn't exist.
work_instruction_action_type| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| name |
Name |
string | |
| reference_back_office |
Ref back office |
string | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "586c0ee5-5060-4748-b1c4-569ffd1be344",
"name": "sample string 2",
"reference_back_office": "sample string 3",
"modified_dateutc": "2026-09-16T11:04:40.7144548+00:00"
}
application/xml, text/xml
Sample:
<work_instruction_action_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>586c0ee5-5060-4748-b1c4-569ffd1be344</id> <modified_dateutc>2026-09-16T11:04:40.714Z</modified_dateutc> <name>sample string 2</name> <reference_back_office>sample string 3</reference_back_office> </work_instruction_action_type>