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/v1/link
Authorization
Body
emailstring
Example: "john.doe@gmail.com"
customerIdarray of string
maxCheckoutQuantitynumber
Example: 1
walletOptions*enum
Example: "CUSTODIAL"
CUSTODIALNON_CUSTODIALBOTH
startDatestring (date-time)
Example: "2023-04-27T18:55:38.665Z"
endDatestring (date-time)
Example: "2023-04-27T18:55:38.665Z"
nftId*string
Example: "1"
type*enum
Example: "GENERAL"
DEFAULTGENERALSPECIFIC
isActive*boolean
Example: true
Response
Body
object
Request
const response = await fetch('/v1/link', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      "walletOptions": "CUSTODIAL",
      "nftId": "1",
      "type": "GENERAL",
      "isActive": true
    }),
});
const data = await response.json();

Last updated