Comment on page
Desynchronize
If you want to break the synchronization of a wallet that you have synchronized, you can break the synchronization with this service.
1
var axios = require('axios');
2
3
axios.get('https://api.getdefy.co/v1/o/wallet/desync', {
4
params: {
5
address: '0x787970ad122d5947579e613c2464d9540081b46f',
6
language: 'en',
7
key: 'API_KEY',
8
},
9
})
10
.then(function (response) {
11
console.log(JSON.stringify(response.data));
12
})
13
.catch(function (error) {
14
console.log(error);
15
});
address
(required): A user address (i.e.0x1a2b3x...
). If specified, the user attached to the query is ignored and the address will be used instead.key
(required): API key for requests.language
(optional): Service language. Default value isen
. Can been
ortr
.
get
https://api.getdefy.co/v1/o
/wallet/desync
Request Example
Parameters
Query
key*
API Key
address*
Wallet Adress
language
Can be: "en", "tr"
Responses
200: OK
400: Bad Request
Last modified 4mo ago