Create Link

Create a mint for a particular user or group of users with claim parameters, such as claim dates, price, group labels, etc..

post
Authorizations
Body
emailstringOptionalExample: [email protected]
customerIdstring[]OptionalExample: ["1234567890"]
maxCheckoutQuantitynumberOptionalExample: 1
walletOptionsstring · enumRequiredExample: CUSTODIALPossible values:
startDatestring · date-timeOptionalExample: 2023-04-27T18:55:38.665Z
endDatestring · date-timeOptionalExample: 2023-04-27T18:55:38.665Z
nftIdstringRequiredExample: 1
typestring · enumRequiredDefault: GENERALExample: GENERALPossible values:
isActivebooleanRequiredDefault: trueExample: true
Responses
201Success
application/json
Responseobject
post
POST /v1/link HTTP/1.1
Host: 
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 231

{
  "email": "[email protected]",
  "customerId": [
    "1234567890"
  ],
  "maxCheckoutQuantity": 1,
  "walletOptions": "CUSTODIAL",
  "startDate": "2023-04-27T18:55:38.665Z",
  "endDate": "2023-04-27T18:55:38.665Z",
  "nftId": "1",
  "type": "GENERAL",
  "isActive": true
}
201Success
{}

Last updated