Client Token Transfer

Transfer project token from client's wallet to the wallet address.

Client Token Transfer

POST {{server-url}}/project-tokens/transfer

Headers

NameTypeDescription

Authorization*

String

UUID formatted access token

Content-Type*

String

application/json

PROJECT-ID*

String

UUID formatted projectId information

Request Body

NameTypeDescription

symbol*

String

Represents project token's symbol

receiverAddress*

String

Represents receiver's wallet address

amount*

Number

Represents transfer amount. (You should send as decimal)

{
    // Response
}

Example Response Body

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

Last updated