How do reply to a message on NFT

Reply to a message on NFTs using an application

Did you try to reply to a message on NFTs using the application? You can check out this guide to reply to a message using our no-code application.

Reply to a message on NFTs using API's

The process of replying to a message on NFT.Kred using the API takes on the same approach as posting it using our no-code application. We have an API /nft/reply which we can use to reply to a message on NFTs using API.

curl --request POST \
     --url 'https://api.nft.kred/nft/reply?token=YourTokenValue&nft=999999&message=MessageId&text=Your Message' \
     --header 'Accept: application/json' \
     --header 'Authorization: Basic am9obndvb2R5OTg1MkBnbWFpbC5jb206QWRtaW5AMTIzNA=='

Reply to a message on NFTs using Python SDK

Posting a message using Python-SDK is simple. This Python SDK bridges the gap between your applications and NFT.Kred APIs. Full-scale NFT solutions can be built in hours - instead of months. You can use NFT.Kred functionality via this python package and interact with the NFT.Kred APIs directly in your app.

Installation & Usage
We have created a tutorial on how you can install the Python SDK on your machine. Read our step-by-step guide on “How to install Python SDK” for more details. After importing the python SDK, please follow the below steps to reply to a message using Python SDK.

Step 1: Import SDK Files
Create a python file and import the below necessary library files by adding the following code.

from kred import services
from kred import models

Step 2: Define reply API method on your python file
Now we need to create a method that will call the "reply to a message on NFT" functionality on your code. Right now, we want to reply to a message on NFT under SocialActions so we will use a "reply" method. we can check which method we should use by following the available examples related to the SocialActions, please have a look at the Example References documentation section, where all the available examples are given. You can copy those methods in your file and build your app.

def reply(token, nft=None, uuid=None, symbol=None, sequence=None, grab=None, message=None, text=None):
    """Reply to a message.
    """

    # service class
    service = services.SocialClient(token)
    model = models.SocialActionModels()

    # parameters
    model.nft = nft # Required: The NFT ID.
    model.uuid = uuid # The NFT UUID.
    model.symbol = symbol # The batch symbol.
    model.sequence = sequence # The batch sequence.
    model.grab = grab # The NFT Grab ID.
    model.message = message # Required: The message ID.
    model.text = text # Required: Reply text.

    # Service API calling
    response = service.reply(model)

Step 3: Call your Defined method to reply to a message on NFTs
From the above step, we have created a python file and defined a "reply" method to reply to a message on NFT. Now we will call that method and pass the required parameter. We may have a look at the required parameter list by following this post API endpoint.

# Define your token here
token = "token value"

# Call define method with values
reply(token, nft, uuid, symbol, sequence, grab, message, text)

That's it, now, you can reply to a message on NFTs with ease using API and Python SDK.