Update NFT Item
If you are yet to deploy an NFT collection, you can modify the details of its NFT items. To accomplish this, send a PATCH request to the /nft/<nft_item_name>
endpoint.
Update NFT Item details.
PATCH
https://api.playfix.io/nft/<nft_item_name>
Path Parameters
nft_item_name
String
An automatically generated unique name of the NFT item. This begins with nftitems/
, followed by a ULID.
Headers
Authorization*
String
Bearer <your_access_token>
Request Body
attributes
String
An array of objects. Each object is an attribute of the NFT item.
imageCoverCid
String
IPFS CID for the NFT item's image.
description
String
A short description of the NFT item.
title
String
The title of the NFT item.
nft
String
Name of the NFT collection the NFT item will be added to. This should be the value of name
from a previously created NFT collection.
Example cURL Call
Example Python Call
Response
You can only update an NFT item if you are yet to deploy the NFT collection.
Last updated