Mint Nft Items
Mint your Nft items to your contract.
Mint Nft Items
POST
{{server-url}}/nft-items/mint
It returns the minted Nft item's identifier values.
Headers
Name
Type
Description
Authorization*
String
UUID formatted access token
Content-Type*
String
application/json
PROJECT-ID*
String
UUID formatted projectId information
Request Body
Name
Type
Description
contractType*
String
Represents which contract you will create Nft on. (It can be ERC721 or ERC1155 for this operation)
nftItemIds*
Array
Represents Nft item's ids
{
// Response
}
Example Response Body
{
"data": [
325,
326,
327,
328
],
"message": null,
"code": 0,
"error": false
}
Last updated