Order Management Order Management for SOAP API Developers API Reference Customer Purchase Order (CPO) Web Service Current: Cloning Customer Purchase Orders PDF Download PDF Download page Cloning Customer Purchase Orders. Current page All pages Cloning Customer Purchase Orders This API clones a Customer Purchase Order in Draft status. Changes the status of the Customer Purchase Order and Purchase Order Items to Accepted.API DetailsAPISignatureacceptOrderwebService static Apttus_Config2.CPQStruct.CloneCustomerPOResponseDO CloneOrder(Apttus_Config2.CPQStruct.CloneCustomerPORequestDO)ParametersNameTypeRequired?DescriptionrequestApttus_Config2.CPQStruct.CloneCustomerPORequestDOYesThe request data object.Request Data Object - Apttus_Config2.CPQStruct.CloneCustomerPORequestDOFieldTypeRequired?DescriptionCustomerPOIdIDYesUnique identifier of Customer Purchase OrderObject to be cloned.API ResponseResponse Data Object - CPQStruct.AcceptCustomerPOResponseDOFieldTypeDescriptionCloneCustomerPurchaseOrderSOApttus_Config2__CustomerPurchaseOrder__c The customer purchase orders object.ClonePurcahseOrderItemsList<Apttus_Config2__CustomerPOItem__c>List of purchase order line items.Code SampleThe following enables you to clone an order for a valid customer purchase order with an Order ID. Apttus_Config2.CPQStruct.CloneCustomerPORequestDO request = new Apttus_Config2.CPQStruct.CloneCustomerPORequestDO(); request.CustomerPOId = originalOrderId; // create the clone response Apttus_Config2.CPQStruct.CloneCustomerPOResponseDO response = new Apttus_Config2.CPQStruct.CloneCustomerPOResponseDO(); XML ×