mallow
  • SMORES Token
    • Overview
    • How to earn
    • Economics
    • SMORES Uses
    • FAQ
  • REST API
    • Overview
    • Reference
      • Types
        • Artwork
        • Collection
      • /artworks
        • GET /artworks/:mintAccount
        • GET /artworks/trending
        • POST /artworks/listedBySeller
        • POST /artworks/byCreator
      • /events
        • POST /events/byMint
        • POST /events/bySeller
      • /users
        • GET /users/:address
      • /rewards
        • GET /rewards/unclaimed/:address
      • /getBidOrBuyTx
        • POST /getBidOrBuyTx
      • /scheduledBids
        • POST /scheduledBids/getBidTx
        • POST /scheduledBids/getCancelBidTx
        • GET /scheduledBids/:bidder
  • Actions/Blinks
Powered by GitBook
On this page
  1. REST API
  2. Reference
  3. /scheduledBids

POST /scheduledBids/getCancelBidTx

Cancel a scheduled a bid

POST https://api.mallow.art/v1/scheduledBids/getCancelBidTx

Generates a base64 encoded VersionedTransaction to cancel a scheduled bid. The transaction must be signed and sent by the bidder.

Bids can only be cancelled prior to its scheduled time (30 minutes before the end of the auction).

Request Body

Name
Type
Description

bidder*

string

The bidder's wallet address

mint*

string

The mint address of the artwork the bid was scheduled for

blockhash

String

(Optional) Recent blockhash to use for the transaction

{
    "result": "AQAAAAAAAAAAA...AAAHL2xa1PfAJQ1dwAAAAA="
}
{
    "error": { 
        "message": "Invalid API Key" 
    }
}
{
    "error": { 
        "message": "Missing required fields" 
    }
}
PreviousPOST /scheduledBids/getBidTxNextGET /scheduledBids/:bidder

Last updated 1 month ago