Nimble Action: Gets shipping method for order
Overview
The Gets shipping method for order Nimble Action is specifically tailored to allow associations seamlessly get the appropriate shipping method for an order. Nimble Actions are Nimble AMS specific Salesforce Apex Actions, designed with App builders in mind, to configure in the association’s org and get the shipping method for an order that has shippable products.
Associations often seek mechanisms that enable them to get shipping methods on an order and Nimble AMS is introducing the Gets shipping method Action to serve this exact purpose. This ensures that shipping methods on shippable products are retrieved in the overarching Order architecture.
Input
Input | Type | Description |
---|---|---|
Account Id | Text | The account Id of the order. |
Order Id | Text | The order Id to get the shipping method of the product. |
Output
Output | Type | Description |
---|---|---|
Error Message | Text | An error is returned, if the process fails. That is, the screen is populated with an error message if Success is false. |
Is Success | Boolean | This indicates whether the process was successful or not. If True, then the operation was successful. |
Ship Methods | Apex-Defined Apex Class: namz__ShippingMethodsSummaryDto | This returns a list of ship methods available for the product. |