katana_public_api_client.api.manufacturing_order.get_manufacturing_order¶
katana_public_api_client.api.manufacturing_order.get_manufacturing_order
¶
Classes¶
Functions¶
asyncio(id, *, client)
async
¶
Retrieve a manufacturing order
Retrieves the details of an existing manufacturing order based on ID.
Parameters:
-
id(int) –
Raises:
-
UnexpectedStatus–If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
-
TimeoutException–If the request takes longer than Client.timeout.
Returns:
-
ErrorResponse | ManufacturingOrder | None–Union[ErrorResponse, ManufacturingOrder]
Source code in katana_public_api_client/api/manufacturing_order/get_manufacturing_order.py
asyncio_detailed(id, *, client)
async
¶
Retrieve a manufacturing order
Retrieves the details of an existing manufacturing order based on ID.
Parameters:
-
id(int) –
Raises:
-
UnexpectedStatus–If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
-
TimeoutException–If the request takes longer than Client.timeout.
Returns:
-
Response[ErrorResponse | ManufacturingOrder]–Response[Union[ErrorResponse, ManufacturingOrder]]
Source code in katana_public_api_client/api/manufacturing_order/get_manufacturing_order.py
sync(id, *, client)
¶
Retrieve a manufacturing order
Retrieves the details of an existing manufacturing order based on ID.
Parameters:
-
id(int) –
Raises:
-
UnexpectedStatus–If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
-
TimeoutException–If the request takes longer than Client.timeout.
Returns:
-
ErrorResponse | ManufacturingOrder | None–Union[ErrorResponse, ManufacturingOrder]
Source code in katana_public_api_client/api/manufacturing_order/get_manufacturing_order.py
sync_detailed(id, *, client)
¶
Retrieve a manufacturing order
Retrieves the details of an existing manufacturing order based on ID.
Parameters:
-
id(int) –
Raises:
-
UnexpectedStatus–If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
-
TimeoutException–If the request takes longer than Client.timeout.
Returns:
-
Response[ErrorResponse | ManufacturingOrder]–Response[Union[ErrorResponse, ManufacturingOrder]]