Click or drag to resize

ItemServicesGetItem Method

Retrieves a single Item based on its UID (text-based unique identifier). No children or descendants of the Item will be returned by this method.

Namespace:  FactoryLogix.xTend.Logistics
Assembly:  FactoryLogix.xTend.API (in FactoryLogix.xTend.API.dll) Version: 8.242.0.0 (8.242.0.0)
Syntax
public Item GetItem(
	Guid sessionId,
	string itemUID
)

Parameters

sessionId
Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method.
itemUID
Type: SystemString
The UID of the item

Return Value

Type: Item
An Item object representing the item matching the specified UID, or null if the item was not found.
Exceptions
ExceptionCondition
InvalidSessionExceptionThrown if the sessionId parameter is invalid.
DuplicateItemExceptionThrown when more than one Item exists with the same UID (possible with different ItemClassifications).
See Also