Click or drag to resize

PartServicesUpdateCustomer Method

Updates an existing customer definition. If a customer with the specified Id does not exist, a NotFoundException will be thrown.

Namespace:  FactoryLogix.xTend.PartDefinition
Assembly:  FactoryLogix.xTend.API (in FactoryLogix.xTend.API.dll) Version: 8.242.0.0 (8.242.0.0)
Syntax
public void UpdateCustomer(
	Guid sessionId,
	Customer customer
)

Parameters

sessionId
Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method.
customer
Type: FactoryLogix.xTend.DataObjectsCustomer
An object representing the customer to be updated. The Id property of the object must be valid.
Exceptions
ExceptionCondition
InvalidSessionExceptionThrown if the sessionId parameter is invalid.
CustomerDoesNotExistsExceptionThrown if the specified customer does not exist in the system.
AlreadyExistsExceptionThrown if the specified vendor already exists in the system.
See Also