# /deleteTrigger

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /deleteTrigger:
    post:
      summary: /deleteTrigger
      deprecated: false
      description: ''
      tags: []
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                payloadSignature:
                  type: string
                  minLength: 1
                  description: Signature of the payload.
                payload:
                  type: object
                  properties:
                    ownerAddr:
                      type: string
                      minLength: 1
                      description: >-
                        The owner address of the position; must be a checksum
                        address.
                    chainId:
                      type: number
                      enum:
                        - 1
                        - 42161
                        - 5
                        - 421613
                      description: >-
                        The chain id of the network. Must be one of the chains
                        supported by Aperture.
                      examples:
                        - 1
                    taskId:
                      type: number
                      minimum: 0
                      description: >-
                        The task id of the trigger in Aperture's automation
                        service.
                  required:
                    - ownerAddr
                    - chainId
                    - taskId
                  x-apidog-orders:
                    - ownerAddr
                    - chainId
                    - taskId
              required:
                - payloadSignature
                - payload
              x-apidog-orders:
                - payloadSignature
                - payload
            example: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
                x-apidog-orders: []
          headers: {}
          x-apidog-name: The trigger has been successfully deleted.
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: string
                description: Message explaining why the request is bad
          headers: {}
          x-apidog-name: Bad Request
        '500':
          description: ''
          content:
            application/json:
              schema:
                type: string
                description: Message explaining the error encountered
          headers: {}
          x-apidog-name: Internal Server Error
      security: []
      x-apidog-folder: ''
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/368746/apis/api-3853887-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.aperture.finance
    description: Prod Env
  - url: https://api.hyperfocal.tech
    description: Testing Env
security: []

```
