Link/Unlink

Link/Unlink an account on your application to Innovaz

Get all records of your app's associated account with the wallet

GET /v1/app/wallet/accounts

Headers: Authentication

Query Parameters

NameTypeDescription

limit

String

Default: 200

offset

String

Default: 0

{
    "data": {
       "total": int,
       "accounts": [
          {
             "account": string,
             "address": string
          }
       ]
    },
    "code": 200
}

POST /v1/app/wallet/account

Headers: Authentication

Request Body

NameTypeDescription

account*

String

Unique: Account identifier

address*

String

Unique: Address of the user

{
    "data": {
       "link_id": string
    },
    "code": 200
}

PUT /v1/app/wallet/account

Headers: Authentication

Request Body

NameTypeDescription

account*

String

Unique: Account identifier

address*

String

Unique: Address of the user

{
    "data": {
       "status": string # "success"
    },
    "code": 200
}

Last updated