POST /authorization/{id}/Return
The method allows to submit a return or to make a price adjustment of goods purchased by a customer. The call is performed when the returned goods are received by the reseller or if some amount needs to be credited. All items submitted in the return call will be printed as negative invoice rows at the invoice.
Input Parameters
Name | Data Type | Default Value | Description |
---|---|---|---|
ID | String | None. Must be specified. | AuthorizationID acquired from direct-invoice, invoice, loan or part-payment. |
Items | Class List of Items | None. At least one item must be specified. | A list of items representing the individual rows on an invoice. Individual items may have a negative value but the total sum of all items must be positive. |
OrderReference | String | None. Must be specified. | An ID that identifies the order for which the purchase is to be made. |
TranId | String (max. length 36 characters) | An empty string | A random unique ID is generated by the calling party to identify the HTTP request. Although the property isn’t strictly required, we recommend generating a new random GUID and passing it. Technically, it can be any string. |
TrackingCode | String | An empty string | Generated code by the delivery company. |
PosId | String | POS ID is the device number. It is visible on every printout from the POS terminal in the left top corner of the receipt below your contact details or on a sticker on the POS terminal. | |
ProductCode | String | An empty string | Partners product group code product category. |
Example request
{
"Items": [
{
"description": "string",
"notes": "string",
"amount": 0,
"taxCode": "string",
"taxAmount": 0,
"productGroup": "string",
"quantity": 0
}
],
"OrderReference": "ue12345",
"TranId": "123456",
"TrackingCode": "123456",
"PosId": "Id123456"
}
Return Value
If successful, the method returns an HTTP status code 200 (OK) with no additional content.
If not successful, the method will return HTTP status code 422 and error description in body.
[
{
"ErrorCode": "13101",
"ErrorMessage": "Purchase denied - insufficient Customer Balance"
}
]
Error Messages
Item amount must be positive Item description must be specified and must not be longer than 35 characters or empty. Return denied – insufficient Purchase Balance Duplicity order error Purchase is not in a completed state Return error – Finnish bank cannot refund money back to the customer account directly The Sum of items has to be a positive amount. Invalid or missing external ID.