Creating a shipment transaction
In order to create a shipment transaction, make a call to the Charge/CreateShipmentTransaction Web Service.
POSThttps://api.gateway.monetico-retail.com/api-payment/V4/Charge/CreateShipmentTransaction
Use the fields below to build your request:
Field name | Description | Required |
---|---|---|
uuid | Unique reference of the initial transaction linked to the “Payment upon shipment” use case generated by the payment gateway. | Yes |
amount | Payment amount related to the shipping transaction in its smallest monetary unit. | Yes |
Request example:
POST https://api.gateway.monetico-retail.com/api-payment/V4/Charge/CreateShipmentTransaction
{ "amount": 3500, "currency": "EUR", "uuid": "a0b61d1e159748eaab876cfe342e8c08" "orderId": "myOrderId-870907" }
The Web Service returns a response of Common/ResponseCodeAnswer type.
In order to obtain more information on the contents of the Transaction object, test the Charge/CreateShipmentTransaction Web Service using our playground.