Skip to main content
DELETE
/
accounts
/
{address}
/
standing-order
/
{standing_order_id}
Delete a standing order
curl --request DELETE \
  --url https://grid.squads.xyz/api/grid/v1/accounts/{address}/standing-order/{standing_order_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-grid-environment: <x-grid-environment>' \
  --data '{
  "transaction_signers": [
    "<string>"
  ]
}'
{
  "kms_payloads": [
    {
      "address": "<string>",
      "payload": "<string>",
      "provider": "privy"
    }
  ],
  "transaction": "<string>",
  "transaction_signers": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

Your Grid API key from the Grid Dashboard

Headers

x-grid-environment
string
required

Solana network environment (sandbox, devnet, mainnet)

Path Parameters

address
string
required

Smart account address

standing_order_id
string
required

Standing order UUID

Body

application/json
transaction_signers
string[] | null

Response

Standing order deleted successfully

kms_payloads
object[]
required
transaction
string
required
transaction_signers
string[]