Skip to main content
POST
/
api
/
v1
/
tokenization
/
collections
Create new Collection
curl --request POST \
  --url https://sandbox.oumla.com/api/v1/tokenization/collections \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --header 'x-sdk-version: <x-sdk-version>' \
  --data '
{
  "networkId": "<string>",
  "addressId": "<string>",
  "type": "NON_FUNGIBLE_TOKEN",
  "clientShare": "<string>",
  "createParams": {
    "initializeParams": [
      {
        "name": "<string>",
        "type": "<string>",
        "value": "<string>"
      }
    ]
  },
  "displayName": "<string>",
  "useGasless": true,
  "fee": "<string>",
  "feeLevel": "LOW",
  "description": "<string>"
}
'
{
  "workflowResult": {
    "workflowId": "<string>",
    "operationId": "<string>",
    "status": "started",
    "message": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

API key for authentication

Headers

x-sdk-version
string
default:1.0.0
required

SDK version header

Body

application/json
networkId
string
required
addressId
string
required
type
enum<string>
required
Available options:
NON_FUNGIBLE_TOKEN,
SEMI_FUNGIBLE_TOKEN
clientShare
string
required
createParams
object
required
displayName
string
useGasless
boolean
fee
string
feeLevel
enum<string>
Available options:
LOW,
MEDIUM,
HIGH
description
string

Response

Create new Collection - workflow started

workflowResult
object
required