Search for Appeasement

Warning

This documentation is for translated APIs and intended only for some implementations who have upgraded from a previous version of Order Management. Verify whether your implementation uses translated APIs before making this call, as you will experience errors if your tenant is not configured to use these. If your implementation is not configured to do so, then refer to the standard API documentation instead.

The Search Appeasement API offers a means of locating an existing appeasement by specifying one or more possible properties. A specific Appeasement ID does not have to be known to perform the search, as the response will return all results that fit the criteria. As this guide shows, however, an Order ID is necessary and appeasements cannot be searched for if the associated order is unknown.

Note that the parameter schemas outlined in this guide are the exact same as in the previous version of OMS, as the Unified Commerce platform supports backwards compatibility for this API. The only change to this request is the format of the base endpoint, as shown in the below table. Remember to provide the x-vol-tenant key for authentication in the headers.

Production URLhttps://{tenantId}-translation.mozu.com/api/v2/orderAppeasement/?{parameters}
Sandbox URLhttps://{tenantId}-translation.sandbox.mozu.com/api/v2/orderAppeasement/?{parameters}
Supported FormatsJSON
HTTP MethodGET

The request itself is built within the URL by adding a “/?” to the call followed by specific parameters joined by the “&” symbol. For instance, searching for an order’s appeasements from the same manufacturer would use the following format:

  • https://{tenantId}-translation.mozu.com/api/v2/orderAppeasement/?orderID=[Order ID]&manufacturerID=[Manufacturer ID]

In the case of performing a search with multiple terms of the same parameter, such as retrieving multiple order IDs at once, use a comma-separated list as shown below.

  • https://{tenantId}-translation.mozu.com/api/v2/orderAppeasement/?orderID=[Order ID One],[Order ID Two],[Order ID Three]

GET calls that support pagination for numerous results, such as when searching, also accept a perPage parameter that defines how many results can be returned on each page. The default is 10 and the maximum is 100. Switch between pages of results by appending the page parameter to the call. For example:

  • https://{tenantId}-translation.mozu.com/api/v2/orderAppeasement/?orderID=[Order ID]&perPage=2&page=2

Example

This example case creates a call that will search for all of a particular order’s appeasements that are paid by the retailer. The request will specify the following properties:

  • Order ID – 01010101
  • Credit Payee – Retailer

Required Parameters

A variety of possible properties can be used to locate an existing appeasement. The API call always requires at least one of these data points to reference as a search term:

ParameterTypeDescription
orderIDstringA single or list of unique identifiers for orders. They must be positive integers.
externalOrderIDstringA single or list of unique client-generated identifiers for orders. The minimum length is 1 and the maximum length is 100.
pageintegerThe page number to begin listing the results from. The default and minimum value is “1”. While this parameter is technically required, this default means that it does not have to be provided in the request unless a different page is specifically desired. Also, note that the page cannot be the sole parameter in the search query – if provided, there must be at least one of the other parameters in this table.

Optional Parameters

The API can also search for any of these additional elements:

ParameterTypeDescription
retailerIDstringA unique identifier for a retailer. The minimum value is “0”.
manufacturerIDstringA unique identifier for a manufacturer. The minimum value is “1”.
catalogIDintegerThe catalog number for the manufacturer. The minimum value is “0”.
catalogIDsstringA single or list of catalogIDs. They must be positive integers. The minimum value is “1”.
creditPayeeenumThe entity who will pay for the credit (KIBO, SHOPATRON, MANUFACTURER, or RETAILER).
perPageintegerThe (max) number of items to return per page. The minimum value is “1” and the maximum value is “100”. The default is “10”.
sortBystringThe field(s) to sort results by, use a minus (-) in front of field name for descending, a plus (+) for ascending. The minimum length is 1.

The Full Request

Using the URL format as outlined above, the entire call is fairly simple to put together. This sample will search for appeasements matching the example’s parameters. Any amount of additional parameters could be appended if desired.

https://{tenantId}-translation.mozu.com/api/v2/orderAppeasement/?orderID=20326364&creditPayee=RETAILER

The Full Response

The API returns the following response. The object returned is a Collection, which contains all of the appeasement results that fit the provided information. The response details all of the information associated with the appeasement: payee and credit details, any connected entities such as a manufacturer, and so forth. It follows the same organizational structure as the standard Get Appeasement Information response.

In this case, the search returned two appeasements (Appeasement 123456 and Appeasement 654321). Their results are clearly separated.

{
    "collection": [
        {
            "orderAppeasementID": 123456,
            "orderID": 01010101,
            "externalOrderID": "Order_XX_111_22334455",
            "creditPayee": "RETAILER",
            "creditAmount": 10,
            "creditDescription": "No Inventory",
            "creditCreationTimestamp": "2017-08-24T22:37:46+00:00",
            "manufacturerID": 00000,
            "catalogID": 0
        },
        {
            "orderAppeasementID": 654321,
            "orderID": 01010101,
            "externalOrderID": "Order_XX_333_22221111",
            "creditPayee": "RETAILER",
            "creditAmount": 10,
            "creditDescription": "Shipment Delayed",
            "creditCreationTimestamp": "2017-08-24T22:37:59+00:00",
            "manufacturerID": 00000,
            "catalogID": 0
        },

    ],
}