200
Voosh API Documentation (1.0.0)
Voosh aggregates data from multiple platforms, including DoorDash, Uber Eats, ezCater, Grubhub, and others, to provide a unified system that enables restaurant owners to analyze their listed restaurants across various platforms and locations.
This API documentation outlines the available endpoints that facilitate seamless access to key operational data. These APIs empower restaurants to efficiently manage operations and make data-driven decisions.
Once you become an official Voosh partner, you will receive a unique API key (partner token) for secure authentication and access to live data. For partnership inquiries, please contact us.
Retrieve a comprehensive list of restaurant IDs (listing IDs) associated with a client.
Access details of all partner clients within the Voosh system, including their respective locations.
Ensure secure authentication and data retrieval using a unique token ID provided by Voosh.
Maintain accurate client mappings and streamline partner integrations.
Get Intial Access Token API: Fetches access tokens necessary to authenticate Voosh API's.
Get Refresh Token API: Refreshes access tokens.
Voosh provides each partner with a unique token ID, which must be included in API requests to authenticate and securely access client data.
Request
This endpoint is used to authenticate a user and initiate a session by providing the user's credentials. Upon successful authentication, the user receives a token that has a 24-hour expiry and can be used for subsequent requests.
POST
POST {{base-url}}/v1/partnerApi/auth/signin
Parameter | Type | Description |
---|---|---|
string | The email address of the user. | |
password | string | The password for the user. |
Example Request Body:
{
"email": "YourEmail",
"password": "YourPassword"
}
The response will indicate the success or failure of the authentication attempt.
Parameter | Type | Description |
---|---|---|
status | boolean | Indicates if the request was successful. |
statusCode | integer | Code representing the status of the response. |
message | string | A message providing additional information (if any). |
result | object | Contains the authentication result. |
profile | object | User profile information. |
id | string | Unique identifier for the user. |
string | Email address of the user. | |
username | string | Username of the user. |
token | string | Authentication token for the session (expires in 24 hours). |
refresh | string | Refresh token for obtaining a new access token. |
error | object | Contains error information if authentication fails. |
Example Response:
{
"status": true,
"statusCode": 200,
"message": "User signed-in successfully",
"result": {
"profile": {
"id": "c369fc58-48ecc4d5790db1",
"email": "email@voosh.in",
"username": "Chatmeter"
},
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6ImMzNjlmYzU4LTM",
"refresh": "eyJhbGciOjttRc.eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9OiJIUzI1NiIsInR5cCI6IkpXVCJ9"
},
"error": null
}
This endpoint allows users to authenticate and sign in to the partner API.
- Mock server
https://api.voosh.ai/_mock/main/v1/partnerApi/auth/signin
https://growapiservicesv2server.voosh.ai/v1/partnerApi/auth/signin
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.voosh.ai/_mock/main/v1/partnerApi/auth/signin \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"email": "YourEmail",
"password": "YourPassword"
}'
{ "error": null, "message": "User signed-in successfully", "result": { "profile": { … }, "refresh": "eyJhbGciOjttRI6IkpXVCJ9.eyJpZCI6ImMzNjlmYzUI6IkpXVCJ9.eyJpZCI6ImMzNjlmYzUI6IkpXVCJ9.eyJpZCI6ImMzNjlmYzUc", "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6ImMzNjlmYzUI6IkpXVCJ9.eyJpZCI6ImMzNjlmYzUI6IkpXVCJ9.eyJpZCI6ImMzNjlmYzU4LTM" }, "status": true, "statusCode": 200 }
Request
POST {{base-url}}/v1/partnerApi/auth/refresh
The request body must be in JSON format and should include the following parameter:
Field | Type | Description |
---|---|---|
refresh | string | The refresh token that is used to obtain a new access token. |
Example Request Body:
{
"refresh": "YourToken"
}
Upon a successful request, the API returns a JSON response with the following structure:
Field | Type | Description |
---|---|---|
status | boolean | Indicates whether the request was successful. |
statusCode | integer | The status code of the response. |
message | string | A message providing additional information about the response. |
result | object | Contains the result of the request. |
token | string | The newly issued access token. |
error | null or object | Contains error information if any occurred during the request. |
Example Response:
{
"status": true,
"statusCode": 200,
"message": "Token refreshed successfully",
"result": {
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6ImMzNjlmYzU4LTQ4NDg3V5cyIsImlhdCI6MTc1MTk4MDA4OSwiZXhwIjoxNzUyMDY2NDg5fQ.TLm0D4ZO4tNwNTCygFIzg0QwXZmeD_3KEKWpWkU"
},
"error": null
}
200 OK: The request was successful, and the token has been refreshed.
Other status codes may indicate different types of errors or issues with the request.
This endpoint is essential for maintaining user sessions without requiring frequent logins, enhancing user experience while ensuring security.
- Mock server
https://api.voosh.ai/_mock/main/v1/partnerApi/auth/refresh
https://growapiservicesv2server.voosh.ai/v1/partnerApi/auth/refresh
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.voosh.ai/_mock/main/v1/partnerApi/auth/refresh \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"refresh": "YourToken"
}'
{ "error": null, "message": "Token refreshed successfully", "result": { "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6ImMzNjlmYzU4LTQ4NDg3V5cyIsImlhdCI6MTc1MTk4MDA4OSwiZXhwIjoxNzUyMDY2NDg5fQ.TLm0D4ZO4tNwNTCygFIzg0QwXZmeD_3JHRNKEKWpWkU" }, "status": true, "statusCode": 200 }
Restaurant Details API
The Restaurant Details API enables partners to retrieve all restaurant listings associated with Voosh, including delivery platform mappings (DoorDash, Uber Eats, Grubhub) and store-level availability, grouped by client. There is also support to retrieve specific client restaurant details.
This API provides:
All Restaurant Listings – Fetches restaurant details for all clients, including listing IDs, restaurant names, and platform-specific store names.
Platform Availability Flags – Indicates if each restaurant is listed on DoorDash, Uber Eats, or Grubhub.
Client-Based Grouping – Organizes listings under each
clientId
andclientName
for easier management.
Reviews API
The Reviews API enables partners to access, manage, and respond to customer reviews for common clients across multiple platforms. This API provides:
Reviews Data – Retrieve detailed reviews submitted by customers across integrated platforms, including ratings, comments, and timestamps.
Manual Reply to Reviews – Submit replies manually to individual customer reviews directly through the API.
This API helps partners streamline customer engagement, maintain brand reputation, and ensure timely responses to feedback across platforms.
Orders API
The Orders API enables seamless aggregation of order data from multiple third-party platforms for clients common to Voosh and its partners. This API provides:
Order Details: Retrieves comprehensive order information from integrated platforms, including order status, timestamps, and itemized breakdowns.
Financial Insights: Fetches order-level financial data, offering visibility into revenue, taxes, fees, and other cost components.
By consolidating order data across platforms, this API empowers partners to efficiently analyze performance, optimize operations, and ensure accurate financial tracking.
Dispute Manager API
The Dispute Manager API enables partners to track and manage disputed orders for common clients across multiple platforms. This API provides:
Disputed Order Data: Retrieves details of disputed orders, including their current status (approved, denied, or expired) and the total number of orders eligible for dispute.
Dispute Resolution Methods:
AI Auto Disputes – Automate the dispute process by enabling AI-powered dispute submission for all locations.
Manual Disputes – Manually select and submit disputes for specific orders as needed.
This API streamlines dispute management, ensuring accurate tracking and efficient resolution of charge discrepancies.
Financial Reconciliation API
The Financial Reconciliation API provides a comprehensive view of financial transactions across multiple locations, enabling accurate tracking and reconciliation of payments, deductions, and discrepancies. This API includes:
Deductions Breakdown – Retrieve a detailed breakdown of deductions, including commissions, error charges, adjustments, and other fee components.
Estimated vs. Actual Payout – Access store-wise comparisons between estimated and actual payouts to identify discrepancies.
Tax Bifurcation – Retrieve store-level tax details, differentiating between taxes remitted to the merchant and those remitted to the state.
POS vs. Third-Party Reconciliation – Compare POS data with third-party platform records to identify order mismatches, status differences, and unclaimed revenue at the store level.
Deposit Data – Get store-wise deposit details to track payment settlements and ensure financial accuracy.
This API helps partners maintain financial transparency and optimize reconciliation processes across platforms.