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

# Delete Standing Order

> Cancel a standing order and stop all future recurring payments



## OpenAPI

````yaml DELETE /api/grid/v1/accounts/{address}/standing-order/{standing_order_id}
openapi: 3.1.0
info:
  title: Grid v1 API
  description: Grid v1 REST API for Solana-based smart account system
  contact:
    name: Grid API Support
    url: https://squads.so
    email: support@squads.so
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://grid.squads.xyz
    description: Production server
security:
  - bearer_auth: []
tags:
  - name: accounts
    description: Smart account management operations
  - name: spending-limits
    description: Spending limit management
  - name: standing-orders
    description: Standing order operations
  - name: transactions
    description: Transaction management
  - name: trade
    description: Trade operations and management
  - name: payments
    description: Payment intent operations
  - name: passkeys
    description: Passkey management
  - name: kyc
    description: Know Your Customer operations
  - name: external-accounts
    description: External bank account management
  - name: virtual-accounts
    description: Virtual account management
  - name: auth
    description: Authentication operations
  - name: proposals
    description: Proposal management for multi-sig operations
  - name: compliance
    description: Compliance entity management and KYB/KYC operations
paths:
  /api/grid/v1/accounts/{address}/standing-order/{standing_order_id}:
    delete:
      tags:
        - standing-orders
      summary: Delete a standing order
      description: Cancel an existing standing order
      operationId: handler
      parameters:
        - name: address
          in: path
          description: Smart account address
          required: true
          schema:
            type: string
        - name: standing_order_id
          in: path
          description: Standing order UUID
          required: true
          schema:
            type: string
        - name: x-grid-environment
          in: header
          description: Solana network environment (sandbox, devnet, mainnet)
          required: true
          schema:
            type: string
          example: sandbox
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteStandingOrderRequestPayload'
        required: true
      responses:
        '200':
          description: Standing order deleted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteStandingOrderResponsePayload'
        '404':
          description: Standing order or smart account not found
        '500':
          description: Internal server error
      security:
        - bearer_auth: []
components:
  schemas:
    DeleteStandingOrderRequestPayload:
      type: object
      properties:
        transaction_signers:
          type: array
          items:
            type: string
          nullable: true
    DeleteStandingOrderResponsePayload:
      type: object
      required:
        - transaction
        - kms_payloads
      properties:
        kms_payloads:
          type: array
          items:
            $ref: '#/components/schemas/KmsPayload'
        transaction:
          type: string
        transaction_signers:
          type: array
          items:
            type: string
    KmsPayload:
      type: object
      required:
        - provider
        - address
        - payload
      properties:
        address:
          type: string
        payload:
          type: string
        provider:
          $ref: '#/components/schemas/GridMPCProvider'
    GridMPCProvider:
      type: string
      enum:
        - privy
        - dynamic
        - passkey
        - turnkey
        - external
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: Your Grid API key from the Grid Dashboard

````