curl --request POST \
--url https://sandbox.oumla.com/api/v1/tokenization/collections \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"network": "ETHEREUM",
"addressId": "your-address-id",
"type": "NON_FUNGIBLE_TOKEN",
"clientShare": "your-client-share",
"createParams": {
"initializeParams": [
{
"name": "_name",
"type": "string",
"value": "My Collection"
},
{
"name": "_symbol",
"type": "string",
"value": "MYC"
},
{
"name": "defaultAdmin",
"type": "address",
"value": "0x1111111111111111111111111111111111111111"
},
{
"name": "minter",
"type": "address",
"value": "0x2222222222222222222222222222222222222222"
},
{
"name": "pauser",
"type": "address",
"value": "0x3333333333333333333333333333333333333333"
}
]
},
"displayName": "My Collection",
"useGasless": false,
"fee": "0",
"feeLevel": "standard",
"description": "Optional collection description"
}
'