# Store Wise Tax-Details This endpoint makes an HTTP GET request to retrieve tax details for provide stores(listingIds). The request should include the client ID as a query parameter. The request body should be in raw format and include the start date, end date, listing IDs, channel, and payout dates. ### Request Body - startDate (string): The start date for the tax details. - endDate (string): The end date for the tax details. - listingIds (array): An array of listing IDs. - channel (array): An array of channels. - payoutDates (array): An array of payout dates. #### Example ### Response Upon a successful execution, the endpoint returns a status code of 200 and a JSON response in the format below: The response includes the status, status code, message, and tax details for each store, including the store ID, tax remitted to the state, and tax remitted to the merchant. ### Summary This endpoint retrieves tax details for a specific client based on the provided start date, end date, listing IDs, and channel. The response includes the status, status code, message, and tax details for each store, including the store ID, tax remitted to the state, and tax remitted to the merchant. Endpoint: GET /finance-manager/financial/tax-details Version: 1.0.0 Security: apiKey ## Query parameters: - `clientId` (string) (required) – The common ID between Voosh and the partner, used to identify the client. Example: "604517c0-fae8-41b7-8c20-0fe4778e415c" ## Header parameters: - `access-token` (string) (required) – The unique token ID provided to the partner for authentication and secure data access. Example: "{{access-token}}" ## Request fields (application/json): - `channel` (array) Example: ["DOORDASH","UBEREATS"] - `endDate` (string) Example: "2025-03-26" - `listingIds` (array) Example: ["P5441","P5461","P5471","P5481","P5491","P5501","P5511","P5531","P5541","P5551","P5561","P5571","P5581","P8191"] - `payoutDates` (array) Example: [] - `startDate` (string) Example: "2025-02-23" ## Response 200 fields (application/json): - `error` (any,null) - `message` (string) Example: "Financial reconciliation Tax details generated successfully" - `result` (object) - `result.storeWise` (array) Example: [{"storeId":"P558","taxRemittedToMerchant":779.34,"taxRemittedToState":0},{"storeId":"P819","taxRemittedToMerchant":0,"taxRemittedToState":989.56},{"storeId":"P556","taxRemittedToMerchant":0,"taxRemittedToState":1877.97},{"storeId":"P557","taxRemittedToMerchant":341.87,"taxRemittedToState":0},{"storeId":"P554","taxRemittedToMerchant":184.3,"taxRemittedToState":1298.03},{"storeId":"P555","taxRemittedToMerchant":113.03,"taxRemittedToState":2146.4},{"storeId":"P544","taxRemittedToMerchant":2887.63,"taxRemittedToState":767.88},{"storeId":"P546","taxRemittedToMerchant":2140.95,"taxRemittedToState":968.45},{"storeId":"P547","taxRemittedToMerchant":6573.94,"taxRemittedToState":3221.92},{"storeId":"P548","taxRemittedToMerchant":1840.58,"taxRemittedToState":386.28},{"storeId":"P550","taxRemittedToMerchant":1870.17,"taxRemittedToState":561.01},{"storeId":"P553","taxRemittedToMerchant":860.28,"taxRemittedToState":382.65}] - `result.storeWise.storeId` (string) Example: "P558" - `result.storeWise.taxRemittedToMerchant` (number) Example: 779.34 - `result.storeWise.taxRemittedToState` (number) - `status` (boolean) Example: true - `statusCode` (number) Example: 200 ## Response 400 fields (application/json): - `error` (string) Example: "Bad Request" - `message` (string) Example: "client id is required" - `status` (boolean) - `statusCode` (number) Example: 400 ## Response 401 fields (application/json): - `error` (string) Example: "Unauthorized" - `message` (string) Example: "Unauthorized, token is required" - `status` (boolean) - `statusCode` (number) Example: 401