{
  "openapi": "3.0.0",
  "info": {
    "title": "App Tab Teakindia Api's",
    "version": "1.0.0",
    "description": ""
  },
  "servers": [
    {
      "url": "http://localhost:3000"
    }
  ],
  "paths": {
    "/adminRoutes/login": {
      "post": {
        "description": "",
        "responses": {
          "200": {
            "description": "OK"
          },
          "400": {
            "description": "Bad Request"
          },
          "401": {
            "description": "Unauthorized"
          },
          "500": {
            "description": "Internal Server Error"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "email": {
                    "example": "any"
                  },
                  "password": {
                    "example": "any"
                  }
                }
              }
            }
          }
        },
        "tags": [
          "adminRoutes"
        ]
      }
    },
    "/adminRoutes/verify-access-code": {
      "post": {
        "description": "",
        "responses": {
          "200": {
            "description": "OK"
          },
          "400": {
            "description": "Bad Request"
          },
          "401": {
            "description": "Unauthorized"
          },
          "500": {
            "description": "Internal Server Error"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "code": {
                    "example": "any"
                  },
                  "accessCode": {
                    "example": "any"
                  }
                }
              }
            }
          }
        },
        "tags": [
          "adminRoutes"
        ]
      }
    },
    "/adminRoutes/logout": {
      "post": {
        "description": "",
        "responses": {
          "200": {
            "description": "OK"
          },
          "500": {
            "description": "Internal Server Error"
          }
        },
        "tags": [
          "adminRoutes"
        ]
      }
    },
    "/adminRoutes/checkislogin": {
      "get": {
        "description": "",
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        },
        "tags": [
          "adminRoutes"
        ]
      }
    },
    "/adminRoutes/sync-status": {
      "get": {
        "description": "",
        "responses": {
          "200": {
            "description": "OK"
          },
          "500": {
            "description": "Internal Server Error"
          }
        },
        "tags": [
          "adminRoutes"
        ]
      }
    },
    "/adminRoutes/sync-push": {
      "post": {
        "description": "",
        "responses": {
          "400": {
            "description": "Bad Request"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "action": {
                    "example": "any"
                  },
                  "relativePath": {
                    "example": "any"
                  },
                  "base64Content": {
                    "example": "any"
                  }
                }
              }
            }
          }
        },
        "tags": [
          "adminRoutes"
        ]
      }
    },
    "/adminRoutes/uploads-stats": {
      "get": {
        "description": "",
        "responses": {
          "200": {
            "description": "OK"
          },
          "500": {
            "description": "Internal Server Error"
          }
        },
        "tags": [
          "adminRoutes"
        ]
      }
    },
    "/adminRoutes/download-uploads-zip": {
      "get": {
        "description": "",
        "responses": {
          "500": {
            "description": "Internal Server Error"
          }
        },
        "tags": [
          "adminRoutes"
        ]
      }
    }
  }
}