Desynchronize

What is this request?

If you want to break the synchronization of a wallet that you have synchronized, you can break the synchronization with this service.

Tutorial

var axios = require('axios');

axios.get('https://api.getdefy.co/v1/o/wallet/desync', {
    params: {
      address: '0x787970ad122d5947579e613c2464d9540081b46f',
      language: 'en',
      key: 'API_KEY',
    },
  })
  .then(function (response) {
    console.log(JSON.stringify(response.data));
  })
  .catch(function (error) {
    console.log(error);
  });

Options

  • 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 is en. Can be en or tr.

Request Example

GET https://api.getdefy.co/v1/o/wallet/desync

Query Parameters

NameTypeDescription

key*

String

API Key

address*

String

Wallet Adress

language

String

Can be: "en", "tr"

{
  "result": {
    "message": "OK",
    "code": 0
  }
}

Last updated