OpenSea · Example Payload

Cancel_Order

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Cancel_Order is an example object payload from OpenSea, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathrequestresponse

Example Payload

Raw ↑
{
  "operationId": "cancel_order",
  "method": "POST",
  "path": "/api/v2/orders/chain/{chain}/protocol/{protocol_address}/{order_hash}/cancel",
  "request": {
    "parameters": {
      "chain": "string",
      "protocol_address": "string",
      "order_hash": "string",
      "X-Api-Key": "string"
    },
    "requestBody": {
      "offererSignature": "string"
    }
  },
  "response": {
    "200": {
      "last_signature_issued_valid_until": "string"
    }
  }
}