removeListing

This mutation is called to remove the listed item to change the status of order remove signature from the order.

Sample mutation

mutation removeListing($orgID: UUID1!, $nftTokenId: UUID1!) {
  removeListing(nftTokenId: $nftTokenId, orgID: $orgID)
}

Sample variable

{
  "orgID": "8fb128bd-f55d-4bcc-8b6c-0beb684e4d4e",
  "nftTokenId": "97f7664d-92a6-4090-ae1d-cbd19a1342f0"
}

Sample response

{
  "data": {
    "removeListing": "Listing removed."
  }
}

Arguments

NameTypeDescriptionRequired
orgIDUUIDThe organization id.Yes
nftTokenIdUUIDNFT token idYes

Fields

NameTypeDescription
removeListingStringUpdate the listing status and empty the signature.

Example

NFT owner only able to remove listing access.