🧑‍🚀 CERTHIS 🧑‍🚀
  • 🎯GET STARTED
    • Platform Quick Overview
    • Certhis Academy
    • Create Collection
  • 👾API Object References
    • Collection
    • NFT
    • User
    • Label
    • Currency
  • 🖼️Dynamic NFT
    • Authentication
    • API Endpoints
  • ⚙️Web3 CRM
    • API Endpoints
    • Webhook
  • 🍏Apple & Google Wallet
    • API Endpoints
    • Scanner
  • 🛒NFT Checkout
    • Claimer
    • API Endpoint
  • ⛏️Mint API
    • API Endpoint
    • MINTER ADDRESS
    • Webhook
    • Free Claim User
  • ✴️API endpoints
    • COLLECTION
    • CURRENCIES
    • NFT
    • STATISTICS
    • TRANSACTIONS
    • USER
    • SIGNATURE
    • CONTRACT
  • 📖Certhis SDK
    • Deploy Collection
    • Fetch NFT
    • Fetch Transactions
  • 💰Certhis WALLET
    • Introduction
    • Usage
    • Generate Wallet
    • Export private key
    • Connect to DAPP
  • 📜Smart Contract
    • ABI
    • INTERFACE
    • Audit
    • Contract Checker
  • 💸Royalties
    • Mint Royalties
    • Resell Royalties
    • Affiliation Royalties
    • Co-Creator Royalties
    • Deactivate Collection Royatlies
  • GATE
  • Community
    • 🔗Certhis On Social Media
    • 🏛️Founders
    • 📞Contact
  • FAQ
    • ❔FAQ
Powered by GitBook
On this page
  1. Web3 CRM

Webhook

POST /crm_register_webhook

This endpoint is used to register or update a webhook for a specific collection.

Headers:

  • api_key (required): The public key of the collection.

  • api_secret (required): The private key of the collection.

Body:

  • webhook (optional): The URL of the webhook. Must be a valid HTTPS URL if provided.

  • webhook_pass (optional): The password for the webhook. Must be less than 250 characters if provided.

  • webhook_login (optional): The login for the webhook. Must be less than 250 characters if provided.

Responses:

  • 200 OK:

    jsonCopier le code{
        "status": true,
        "message": "updated"
    }
  • 400 Bad Request: Various error messages indicating the cause of the error.

GET /crm_get_webhook

This endpoint is used to retrieve the webhook details for a specific collection.

Headers:

  • api_key (required): The public key of the collection.

  • api_secret (required): The private key of the collection.

Responses:

  • 200 OK:

    jsonCopier le code{
        "status": true,
        "data": {
            "webhook": "https://yourwebhook.com",
            "webhook_pass": "yourpassword",
            "webhook_login": "yourlogin"
        }
    }
  • 400 Bad Request: Various error messages indicating the cause of the error.

PreviousAPI EndpointsNextApple & Google Wallet

Last updated 9 months ago

⚙️