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
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
Headers: Authentication
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
Headers: Authentication
Request Body
Name
Type
Description
account*
String
Unique: Account identifier
address*
String
Unique: Address of the user
{
"data": {
"status": string # "success"
},
"code": 200
}
Last updated