3mint
  • 👋Welcome to 3mint
  • 💻3mint Platform
    • Introduction
    • Deploy a contract
    • Upload your NFT data
    • Create checkout links
    • Add customers
    • Monitor your links
  • ⌨️Developer Guides
    • Introduction
    • Contracts
      • Contract Architecture
      • End-to-end Example
    • Mint
      • How To
      • End-to-end Example
      • Code Snippets
    • Wallets
      • End-to-end Example
      • Mobile Pass
        • Creating Passes
    • Token Gating
      • End-to-end Example
      • Code Snippets
  • 📖API Reference
    • Overview
    • Contracts
      • Deploy Contract
      • Get Contract
    • Collectibles
      • Get All Templates
      • Mint Collectible
    • Wallets
      • Create Wallet
      • Get Wallet
    • Customers
      • Create Customer
      • Get Customer
      • Delete Customer
    • Claim Links
      • Create Link
      • Update Link
    • Token Gating
      • Create Gate
  • ❓FAQ
    • Web3 101
    • Platform
Powered by GitBook
On this page
  1. API Reference
  2. Claim Links

Create Link

PreviousClaim LinksNextUpdate Link

Last updated 2 years ago

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: john.doe@gmail.com
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": "john.doe@gmail.com",
  "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
{}