Order Management Order Management for SOAP API Developers API Reference Customer Purchase Order (CPO) Web Service Current: Reverting Cancelled Customer Purchase Orders PDF Download PDF Download page Reverting Cancelled Customer Purchase Orders. Current page All pages Reverting Cancelled Customer Purchase Orders This API reverts the cancellation of a customer purchase order.API DetailsAPISignatureundoCancelCustomerPOwebService static Apttus_Config2.CPQStruct.UndoCancelCustomerPOResponseDOundoCancelCustomerPO(Apttus_Config2.CPQStruct.UndoCancelCustomerPORequestDO)ParametersNameTypeDescriptionrequestApttus_Config2.CPQStruct.UndoCancelCustomerPORequestDOThe request data object.Request Data Object - Apttus_Config2.UndoCancelCustomerPORequestDOFieldTypeRequired?DescriptionCustomerPOIdIDYesUnique identifier of the latest version of cancelled customer purchase order.API ResponseResponse Data Object - CPQStruct.UndoCancelOrderResponseDOFieldTypeDescriptionPreviousCustomerPurchaseOrderSOStandard Data ObjectThe fields of the previous customer purchase order object.Code SampleThe following sample allows you to roll back cancellation of a customer purchase order. //undocancel customerPurchaseOrder CPQStruct.UndoCancelCustomerPORequestDO request = new CPQStruct.UndoCancelCustomerPORequestDO(); request.CustomerPOId = CustomerPOId; CPQStruct.UndoCancelCustomerPOResponseDO result = CustomerPOWebService.undoCancelCustomerPO(request); system.debug(result.PreviousCustomerPurchaseOrderSO); CODE ×