Check Marketplace Token Allowance

Check allowance with specified informations. You can check the operator address allowed or not for specified amount of the project token.

Check Marketplace Token Allowance

GET {{server-url}}/marketplace-tokens/allowance

It returns true or false

Query Parameters

NameTypeDescription

symbol*

String

Represents marketplace token symbol

address*

String

Represents address that will give allowance

operatorAddress*

String

Represents the address to be allowed.

amount*

Number

Represents amount of marketplace token. (You should send as decimal, NOT wei)

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