> ## 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.

# Update Webhook

## Overview

The "Add Monday API Key" endpoint allows users to integrate their Monday.com account with Toingg by adding an API key. By sending a POST request to the `/add_monday_info` endpoint, users can securely store their Monday API key, enabling seamless interaction between Toingg and Monday.com. This functionality is crucial for automating workflows and ensuring that data is synchronized between the two platforms, enhancing productivity and operational efficiency. The endpoint supports the integration process to align with evolving business requirements and improve task management capabilities.

#### Example cURL Request

```bash theme={null}
curl -X 'POST' \ 'https://api.toingg.com/api/v3/add_monday_info?apiKey=scx' \
 -H 'accept: application/json' \
 -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
-d 'Your_MONDAY_API_KEY'
```


## OpenAPI

````yaml POST /add_monday_info
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.toingg.com/api/v3
security: []
paths:
  /add_monday_info:
    post:
      tags:
        - Monday Integration
      summary: Add Monday Info
      operationId: add_monday_info_add_monday_info_post
      parameters:
        - name: apiKey
          in: query
          required: true
          schema:
            type: string
            title: Apikey
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: login

````