Check Nft Item Approval Permission

Check approval is permissioned or not. You might be want to make some Nft operations behalf of the user.

Check Nft Item Approval Permission

GET {{server-url}}/web3/:contractType/approval

It returns true or false

Query Parameters

NameTypeDescription

address*

String

Represents address that will give allowance

operatorAddress*

String

Represents the address to be allowed.

Headers

NameTypeDescription

Authorization*

String

UUID formatted access token

Content-Type*

String

application/json

PROJECT-ID*

String

UUID formatted projectId information

{
    // Response
}

Example Response Body

{
    "data": true,
    "message": null,
    "code": 0,
    "error": false
}

Last updated