Update NFT Collection
Last updated
Last updated
You can update the configuration details of an NFT collection by sending a PATCH request to the /nft/<nft_collection_name>
endpoint.
PATCH
https://api.playfix.io/nft/<nft_collection_name>
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Example cURL API Call
Example Python API Call
Response
You can ony update the details of an NFT collection if you are yet to deploy it.
nft_collection_name*
String
A unique name of the NFT collection, automatically generated by Playfix. It begins with "nfts/
" followed by a ULID.
Authorization*
String
Bearer <your_access_token>
project
String
The name
of the project that will contain the NFT collection.
network
String
Name of the blockchain network where the NFT collection contract will be deployed.
config.ownerAddress
String
Wallet address of the contract owner, which receives the NFT collection.
config.pausable
String
Set to true
to allow pausing of NFT transfer.
config.burnable
String
Set to true
to allow NFT burning.
config.itemPrice
String
A non-negative number representing the mint price of an NFT in this NFT collection.
config.name
String
Name of the token.
config
String
Configuration options for the NFT collection.
imageCoverCid
String
IPFS CID for the image to use as the NFT collection cover image when displayed in the user interface.
description
String
Short description of the NFT collection.
title
String
The title of the NFT collection.
standard
String
The token creation standard all NFTs in this collection will follow. Set it to any of the following values:
NFT_STANDARD_ERC721
or
NFT_STANDARD_ERC1155
config.symbol
String
A shorthand symbol to refer to the NFT collection. Choose a short, uppercase word between 3-5 characters that is unique within your project.