POST api/OmniPay/ReconcileDriverCashPayments
Request Information
URI Parameters
None.
Body Parameters
CallOmnipayMopupDto| Name | Description | Type | Additional information | 
|---|---|---|---|
| ShipmentId | string | None. | |
| DriverId | integer | None. | |
| OrderIds | Collection of integer | None. | |
| MopUpType | MopUpType | None. | |
| LoggedInUser | integer | None. | |
| IdempotencyKey | string | None. | |
| WalletId | string | None. | |
| WalletType | PublicOmniPayWalletTypes | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "ShipmentId": "sample string 1",
  "DriverId": 2,
  "OrderIds": [
    1,
    2
  ],
  "MopUpType": 1,
  "LoggedInUser": 3,
  "IdempotencyKey": "sample string 4",
  "WalletId": "sample string 5",
  "WalletType": 2
}
        application/xml, text/xml
            Sample:
        
<CallOmnipayMopupDto xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <WalletId>sample string 5</WalletId>
  <WalletType>Customer</WalletType>
  <ShipmentId>sample string 1</ShipmentId>
  <DriverId>2</DriverId>
  <OrderIds>
    <int>1</int>
    <int>2</int>
  </OrderIds>
  <MopUpType>ShipmentType</MopUpType>
  <LoggedInUser>3</LoggedInUser>
  <IdempotencyKey>sample string 4</IdempotencyKey>
</CallOmnipayMopupDto>
        application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
VCAPIResponse| Name | Description | Type | Additional information | 
|---|---|---|---|
| Version | string | None. | |
| dateTime | string | None. | |
| StatusCode | integer | None. | |
| ErrorMessage | string | None. | |
| Result | Object | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "Version": "1.0.0",
  "dateTime": "2025/10/31 15:41:55",
  "StatusCode": 1,
  "ErrorMessage": "sample string 2",
  "Result": {}
}
        application/xml, text/xml
            Sample:
<VCAPIResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <StatusCode>1</StatusCode> <ErrorMessage>sample string 2</ErrorMessage> <Result /> </VCAPIResponse>