Aperture API for UniV3 Automation
    Aperture API for UniV3 Automation
    • Aperture Finance UniV3 Automation API
    • /checkPositionApproval
      GET
    • /updatePositionPermit
      POST
    • /createTrigger
      POST
    • /listTrigger
      GET
    • /updateTrigger
      POST
    • /deleteTrigger
      POST
    • /checkUserLimit
      GET

      /deleteTrigger

      Prod Env
      https://api.aperture.finance
      Prod Env
      https://api.aperture.finance
      POST
      /deleteTrigger

      Request

      Body Params application/json
      payloadSignature
      string 
      required
      Signature of the payload.
      >= 1 characters
      payload
      object 
      required
      ownerAddr
      string 
      required
      The owner address of the position; must be a checksum address.
      >= 1 characters
      chainId
      enum<number> 
      required
      The chain id of the network. Must be one of the chains supported by Aperture.
      Allowed values:
      1421615421613
      Example:
      1
      taskId
      number 
      required
      The task id of the trigger in Aperture's automation service.
      >= 0
      Example
      {
          "payloadSignature": "string",
          "payload": {
              "ownerAddr": "string",
              "chainId": 1,
              "taskId": 0
          }
      }

      Request samples

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request POST 'https://api.aperture.finance/deleteTrigger' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "payloadSignature": "string",
          "payload": {
              "ownerAddr": "string",
              "chainId": 1,
              "taskId": 0
          }
      }'

      Responses

      🟢200The trigger has been successfully deleted.
      application/json
      Body
      object {0}
      Example
      {}
      🟠400Bad Request
      🔴500Internal Server Error
      Previous
      /updateTrigger
      Next
      /checkUserLimit
      Built with