---
title: "Store Wise Estimted Vs Actual Payout"
method: GET
path: "/finance-manager/financial/estimate-vs-actual-payouts-details"
tags: ["Financial Reconciliation API"]
---

# Store Wise Estimted Vs Actual Payout

`GET /finance-manager/financial/estimate-vs-actual-payouts-details`

# Financial Estimate vs Actual Payouts Details

This endpoint retrieves the financial estimate versus actual payouts details for a specific client.

## Request

### Endpoint

`GET /finance-manager/financial/estimate-vs-actual-payouts-details`

### Query Parameters

- `clientId` (string, required): The unique identifier of the client.
    

### Request Body

``` json
{
  "startDate": "YYYY-MM-DD",
  "endDate": "YYYY-MM-DD",
  "listingIds": ["string"],
  "channel": ["string"],
  "payoutDates": []
}

 ```

- `startDate` (string): The start date for the financial estimate.
    
- `endDate` (string): The end date for the financial estimate.
    
- `listingIds` (array of strings): The listing IDs for which the estimate is being calculated.
    
- `channel` (array of strings): The channels for which the estimate is being calculated.
    
- `payoutDates` (array): The payout dates.
    

## Response

### JSON Schema

``` json
{
  "type": "object",
  "properties": {
    "status": {"type": "boolean"},
    "statusCode": {"type": "integer"},
    "message": {"type": "string"},
    "result": {
      "type": "object",
      "properties": {
        "storeWise": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "store": {"type": "string"},
              "revenue": {"type": "number"},
              "deductions": {
                "type": "object",
                "properties": {
                  "total": {"type": "number"},
                  "commission": {"type": "number"},
                  "promoValue": {"type": "number"},
                  "deliveryFee": {"type": "number"},
                  "tips": {"type": "number"},
                  "marketingFees": {"type": "number"},
                  "paymentTransactionFee": {"type": "number"},
                  "ezReward": {"type": "number"},
                  "preferredPartnerProgram": {"type": "number"},
                  "deliveryCommission": {"type": "number"},
                  "marketingAdjustments": {"type": "number"},
                  "otherPayments": {"type": "number"},
                  "taxWithHeld": {"type": "number"},
                  "commissionTax": {"type": "number"},
                  "merchantFee": {"type": "number"}
                }
              },
              "tax": {"type": "number"},
              "estimatedPayout": {"type": "number"},
              "difference": {
                "type": "object",
                "properties": {
                  "total": {
                    "type": "object",
                    "properties": {
                      "total": {"type": "number"},
                      "itemValue": {"type": "number"},
                      "itemTax": {"type": "number"}
                    }
                  },
                  "errorCharges": {
                    "type": "object",
                    "properties": {
                      "total": {"type": "number"},
                      "itemValue": {"type": "number"},
                      "itemTax": {"type": "number"}
                    }
                  },
                  "adjustments": {
                    "type": "object",
                    "properties": {
                      "total": {"type": "number"},
                      "itemValue": {"type": "number"},
                      "itemTax": {"type": "number"}
                    }
                  },
                  "refundByVoosh": {
                    "type": "object",
                    "properties": {
                      "total": {"type": "number"},
                      "itemValue": {"type": "number"},
                      "itemTax": {"type": "number"}
                    }
                  }
                }
              },
              "netPayout": {
                "type": "object",
                "properties": {
                  "total": {"type": "number"}
                }
              }
            }
          }
        },
        "error": {"type": "null"}
      }
    }
  }
}

 ```

The response returns the status of the request, along with the financial estimate versus actual payouts details for the specified client.

## Query parameters

- `clientId` string

## Headers

- `access-token` string

## Request body

- object
  - `channel` string[]
  - `endDate` string
  - `listingIds` string[]
  - `payoutDates` unknown[]
    - unknown
  - `startDate` string

## Response `200`

200

- object
  - `error` unknown
  - `message` string
  - `result` object
    - `storeWise` object[]
      - `deductions` object
        - `commission` number
        - `commissionTax` number
        - `deliveryCommission` number
        - `deliveryFee` number
        - `ezReward` number
        - `marketingAdjustments` number
        - `marketingFees` number
        - `merchantFee` number
        - `otherPayments` number
        - `paymentTransactionFee` number
        - `preferredPartnerProgram` number
        - `promoValue` number
        - `taxWithHeld` number
        - `tips` number
        - `total` number
      - `difference` object
        - `adjustments` object
          - `itemTax` number
          - `itemValue` number
          - `total` number
        - `errorCharges` object
          - `itemTax` number
          - `itemValue` number
          - `total` number
        - `refundByVoosh` object
          - `itemTax` number
          - `itemValue` number
          - `total` number
        - `total` object
          - `itemTax` number
          - `itemValue` number
          - `total` number
      - `estimatedPayout` number
      - `netPayout` object
        - `total` number
      - `revenue` number
      - `store` string
      - `tax` number
  - `status` boolean
  - `statusCode` number

## Other responses

- `400` — 400

---

[API](https://skmtc.net/voosh/apis/voosh-api-documentation.md) · [All operations](https://skmtc.net/voosh/apis/voosh-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/voosh/voosh-api-documentation/revisions/d53ba6056960/schema)
