> ## Documentation Index
> Fetch the complete documentation index at: https://docs.toingg.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove Monday Info

## Overview

The "Remove Monday Info" endpoint allows users to delete existing Monday.com information from their Toingg account. By sending a DELETE request to the `/remove_monday_info` endpoint, users can remove stored Monday API keys and other related data. This functionality is crucial for managing integrations, ensuring that outdated or unnecessary information is efficiently removed to maintain optimal system performance and security. The endpoint supports deletions to streamline integration management and align with evolving business requirements.

#### Example cURL Request

```bash theme={null}
curl -X 'DELETE' \
  'https://api.toingg.com/api/v3/remove_monday_info' \
  -H 'accept: application/json' \
 -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
```


## OpenAPI

````yaml DELETE /remove_monday_info
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.toingg.com/api/v3
security: []
paths:
  /remove_monday_info:
    delete:
      tags:
        - Monday Integration
      summary: Remove Monday Info
      operationId: remove_monday_info_remove_monday_info_delete
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - OAuth2PasswordBearer: []
components:
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: login

````