Innovaz
Website Linktree
  • Introduction
  • Whitepaper
    • Summary
    • Introduction
    • Problem
    • Solution
    • Market Analysis
    • Competitive Landscape
    • The team
    • Roadmap
  • 🤓User Guide
    • Create an account and log in
    • Create an NFT Collection
    • Customize Template
    • Release NFT Collection
    • Edit Template
    • Mint NFT
  • ⚙️API documents
    • Overview
    • HTTP Status Code
    • Authentication
    • Webhooks & Notifications
    • Chains
    • Collections
    • Link/Unlink
    • Marketplace
  • ⚙️SDK Integrate
    • 1. Python SDK
    • 2. NPM
  • Terms
  • Privacy
Powered by GitBook
On this page
  • Get all records of your app's associated account with the wallet
  • Link an account of your application to a wallet
  • Unlink an account of your application to a wallet
  1. API documents

Link/Unlink

Link/Unlink an account on your application to Innovaz

PreviousCollectionsNextMarketplace

Last updated 1 year ago

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

GET /v1/app/wallet/accounts

Headers:

Query Parameters

Name
Type
Description

limit

String

Default: 200

offset

String

Default: 0

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

Link an account of your application to a wallet

POST /v1/app/wallet/account

Request Body

Name
Type
Description

account*

String

Unique: Account identifier

address*

String

Unique: Address of the user

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

Unlink an account of your application to a wallet

PUT /v1/app/wallet/account

Request Body

Name
Type
Description

account*

String

Unique: Account identifier

address*

String

Unique: Address of the user

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

Headers:

Headers:

⚙️
Authentication
Authentication
Authentication