Autodesk Vault ProfessionalVault API

UpdateChangeOrderRoutingMembers Method

Autodesk.Connectivity.WebServicesChangeOrderService

Updates the users and roles for a Change Order Routing.

Required Permissions

ChangeOrderParticipate

Syntax

public RoutingMembAndRoles UpdateChangeOrderRoutingMembers(
   System.long changeOrderId,
   System.long routingId,
   RoutingUserRoles[] addMembers,
   RoutingUserRoles[] delMembers
)
Public Function UpdateChangeOrderRoutingMembers( _
   ByVal changeOrderId As System.Long, _
   ByVal routingId As System.Long, _
   ByVal addMembers() As RoutingUserRoles, _
   ByVal delMembers() As RoutingUserRoles _
) As RoutingMembAndRoles

Parameters

NameDescription
changeOrderIdThe targeted change order ID.
routingIdThe ID of the Routing that is associated with the Change Order. Pass in -1 to keep the same Routing. Note: This association is for meta-data reasons only. Changing this value alone does not update the users or roles for this Change Order.
addMembersArray of users with their roles to be added to the change order Routing.
delMembersArray of users with their roles to be removed from the change order Routing.

Return Value

Returns the resulting members and roles of the change order Routing.

Remarks

To remove a user from the Routing, the user and all of their roles must be specified in the delMembers parameter.

See Also