GET api/bagapi/bag/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
BagViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| active | boolean |
Required |
|
| bag_status_id | globally unique identifier |
Required |
|
| cleanroom_type_id | globally unique identifier |
Required |
|
| code | integer |
Required |
|
| date_hu | date |
None. |
|
| id | globally unique identifier |
None. |
|
| site_id | globally unique identifier |
Required |
|
| wash_count | integer |
None. |
|
| position | integer |
None. |
|
| pc_id | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"active": true,
"bag_status_id": "ff91def2-31df-4ab8-a219-fd4826bf721d",
"cleanroom_type_id": "4f9bd0f0-e1fe-44df-81e9-fe483af18214",
"code": 3,
"date_hu": "2026-06-10T01:07:32.6096477+00:00",
"id": "642a76cc-5c10-4e53-b89a-7d4c634b821e",
"site_id": "446e4a64-2fdf-4f87-9ce3-a0850e349c65",
"wash_count": 6,
"position": 1,
"pc_id": "47103f9d-ab75-4eac-9003-e9e5e548ac53"
}
application/xml, text/xml
Sample:
<bag xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel"> <active>true</active> <bag_status_id>ff91def2-31df-4ab8-a219-fd4826bf721d</bag_status_id> <cleanroom_type_id>4f9bd0f0-e1fe-44df-81e9-fe483af18214</cleanroom_type_id> <code>3</code> <date_hu>2026-06-10T01:07:32.6096477+00:00</date_hu> <id>642a76cc-5c10-4e53-b89a-7d4c634b821e</id> <pc_id>47103f9d-ab75-4eac-9003-e9e5e548ac53</pc_id> <position>1</position> <site_id>446e4a64-2fdf-4f87-9ce3-a0850e349c65</site_id> <wash_count>6</wash_count> </bag>