Skip to content

Latest commit

 

History

History
662 lines (498 loc) · 21.1 KB

WalletDataApi.md

File metadata and controls

662 lines (498 loc) · 21.1 KB

IO.Swagger.Api.WalletDataApi

All URIs are relative to https://api.coinsecure.in/

Method HTTP request Description
V1userwalletcoinaddressWalletID GET /v1/user/wallet/coin/address/{walletID} Wallet Bitcoin Addresses
V1userwalletcoindepositconfirmedWalletID GET /v1/user/wallet/coin/deposit/confirmed/{walletID} Confirmed Wallet Transactions
V1userwalletcoindepositconfirmedall GET /v1/user/wallet/coin/deposit/confirmed/all Confirmed Wallet Deposit
V1userwalletcoindepositunconfirmedWalletID GET /v1/user/wallet/coin/deposit/unconfirmed/{walletID} Unconfirmed Transactions in Wallet
V1userwalletcoindepositunconfirmedall GET /v1/user/wallet/coin/deposit/unconfirmed/all All Unconfirmed Deposits
V1userwalletcoinwallets GET /v1/user/wallet/coin/wallets Wallet Details
V1walletwithdrawcancelled GET /v1/wallet/coin/withdraw/cancelled Cancelled Coin Withdrawals
V1walletwithdrawcompleted GET /v1/wallet/coin/withdraw/completed Completed Coin Withdrawals
V1walletwithdrawunverified GET /v1/wallet/coin/withdraw/unverified Unverified Coin Withdrawals
V1walletwithdrawverified GET /v1/wallet/coin/withdraw/verified Verified Coin Withdrawals

V1userwalletcoinaddressWalletID

WalletAddressDataResponse V1userwalletcoinaddressWalletID (string walletID, string authorization = null, string accept = null)

Wallet Bitcoin Addresses

Gets a List of Users Bitcoin Deposit Addresses.

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class V1userwalletcoinaddressWalletIDExample
    {
        public void main()
        {
            
            var apiInstance = new WalletDataApi();
            var walletID = walletID_example;  // string | 
            var authorization = authorization_example;  // string | API object to be added (optional) 
            var accept = accept_example;  // string | JSON, XML or CSV can be returned (Optional) (optional) 

            try
            {
                // Wallet Bitcoin Addresses
                WalletAddressDataResponse result = apiInstance.V1userwalletcoinaddressWalletID(walletID, authorization, accept);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling WalletDataApi.V1userwalletcoinaddressWalletID: " + e.Message );
            }
        }
    }
}

Parameters

Name Type Description Notes
walletID string
authorization string API object to be added [optional]
accept string JSON, XML or CSV can be returned (Optional) [optional]

Return type

WalletAddressDataResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json, application/xml, application/csv

[Back to top] [Back to API list] [Back to Model list] [Back to README]

V1userwalletcoindepositconfirmedWalletID

WalletAddressDataResponse V1userwalletcoindepositconfirmedWalletID (string walletID, string authorization = null, string accept = null)

Confirmed Wallet Transactions

Gets your Confirmed Wallet Bitcoin Transactions.

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class V1userwalletcoindepositconfirmedWalletIDExample
    {
        public void main()
        {
            
            var apiInstance = new WalletDataApi();
            var walletID = walletID_example;  // string | 
            var authorization = authorization_example;  // string | API object to be added (optional) 
            var accept = accept_example;  // string | JSON, XML or CSV can be returned (Optional) (optional) 

            try
            {
                // Confirmed Wallet Transactions
                WalletAddressDataResponse result = apiInstance.V1userwalletcoindepositconfirmedWalletID(walletID, authorization, accept);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling WalletDataApi.V1userwalletcoindepositconfirmedWalletID: " + e.Message );
            }
        }
    }
}

Parameters

Name Type Description Notes
walletID string
authorization string API object to be added [optional]
accept string JSON, XML or CSV can be returned (Optional) [optional]

Return type

WalletAddressDataResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json, application/xml, application/csv

[Back to top] [Back to API list] [Back to Model list] [Back to README]

V1userwalletcoindepositconfirmedall

WalletAddressDataResponse V1userwalletcoindepositconfirmedall (string authorization = null, string accept = null)

Confirmed Wallet Deposit

Gets the total confirmed transactions across all accounts and addresses

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class V1userwalletcoindepositconfirmedallExample
    {
        public void main()
        {
            
            var apiInstance = new WalletDataApi();
            var authorization = authorization_example;  // string | API object to be added (optional) 
            var accept = accept_example;  // string | JSON, XML or CSV can be returned (Optional) (optional) 

            try
            {
                // Confirmed Wallet Deposit
                WalletAddressDataResponse result = apiInstance.V1userwalletcoindepositconfirmedall(authorization, accept);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling WalletDataApi.V1userwalletcoindepositconfirmedall: " + e.Message );
            }
        }
    }
}

Parameters

Name Type Description Notes
authorization string API object to be added [optional]
accept string JSON, XML or CSV can be returned (Optional) [optional]

Return type

WalletAddressDataResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json, application/xml, application/csv

[Back to top] [Back to API list] [Back to Model list] [Back to README]

V1userwalletcoindepositunconfirmedWalletID

void V1userwalletcoindepositunconfirmedWalletID (string walletID, string authorization, string accept = null)

Unconfirmed Transactions in Wallet

Gets the unconfirmed transactions on an account/ wallet.

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class V1userwalletcoindepositunconfirmedWalletIDExample
    {
        public void main()
        {
            
            var apiInstance = new WalletDataApi();
            var walletID = walletID_example;  // string | 
            var authorization = authorization_example;  // string | API object to be added
            var accept = accept_example;  // string | JSON, XML or CSV can be returned (Optional) (optional) 

            try
            {
                // Unconfirmed Transactions in Wallet
                apiInstance.V1userwalletcoindepositunconfirmedWalletID(walletID, authorization, accept);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling WalletDataApi.V1userwalletcoindepositunconfirmedWalletID: " + e.Message );
            }
        }
    }
}

Parameters

Name Type Description Notes
walletID string
authorization string API object to be added
accept string JSON, XML or CSV can be returned (Optional) [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json, application/xml, application/csv

[Back to top] [Back to API list] [Back to Model list] [Back to README]

V1userwalletcoindepositunconfirmedall

void V1userwalletcoindepositunconfirmedall (string authorization = null, string accept = null)

All Unconfirmed Deposits

Gets the total unconfirmed transactions across all accounts and addresses

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class V1userwalletcoindepositunconfirmedallExample
    {
        public void main()
        {
            
            var apiInstance = new WalletDataApi();
            var authorization = authorization_example;  // string | API object to be added (optional) 
            var accept = accept_example;  // string | JSON, XML or CSV can be returned (Optional) (optional) 

            try
            {
                // All Unconfirmed Deposits
                apiInstance.V1userwalletcoindepositunconfirmedall(authorization, accept);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling WalletDataApi.V1userwalletcoindepositunconfirmedall: " + e.Message );
            }
        }
    }
}

Parameters

Name Type Description Notes
authorization string API object to be added [optional]
accept string JSON, XML or CSV can be returned (Optional) [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json, application/xml, application/csv

[Back to top] [Back to API list] [Back to Model list] [Back to README]

V1userwalletcoinwallets

WalletsDataResponse V1userwalletcoinwallets (string authorization = null, string accept = null)

Wallet Details

Gets a List of Users Wallets.

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class V1userwalletcoinwalletsExample
    {
        public void main()
        {
            
            var apiInstance = new WalletDataApi();
            var authorization = authorization_example;  // string | API object to be added (optional) 
            var accept = accept_example;  // string | JSON, XML or CSV can be returned (Optional) (optional) 

            try
            {
                // Wallet Details
                WalletsDataResponse result = apiInstance.V1userwalletcoinwallets(authorization, accept);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling WalletDataApi.V1userwalletcoinwallets: " + e.Message );
            }
        }
    }
}

Parameters

Name Type Description Notes
authorization string API object to be added [optional]
accept string JSON, XML or CSV can be returned (Optional) [optional]

Return type

WalletsDataResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json, application/xml, application/csv

[Back to top] [Back to API list] [Back to Model list] [Back to README]

V1walletwithdrawcancelled

WalletCoinWithdrawDataResponse V1walletwithdrawcancelled (string authorization, string accept = null)

Cancelled Coin Withdrawals

Gets a List of Unverified Coin Withdrawals. The value and fees are in satoshis.

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class V1walletwithdrawcancelledExample
    {
        public void main()
        {
            
            var apiInstance = new WalletDataApi();
            var authorization = authorization_example;  // string | API object to be added
            var accept = accept_example;  // string | JSON, XML or CSV can be returned (Optional) (optional) 

            try
            {
                // Cancelled Coin Withdrawals
                WalletCoinWithdrawDataResponse result = apiInstance.V1walletwithdrawcancelled(authorization, accept);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling WalletDataApi.V1walletwithdrawcancelled: " + e.Message );
            }
        }
    }
}

Parameters

Name Type Description Notes
authorization string API object to be added
accept string JSON, XML or CSV can be returned (Optional) [optional]

Return type

WalletCoinWithdrawDataResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json, application/xml, application/csv

[Back to top] [Back to API list] [Back to Model list] [Back to README]

V1walletwithdrawcompleted

WalletCoinWithdrawDataResponse V1walletwithdrawcompleted (string authorization, string accept = null)

Completed Coin Withdrawals

Gets a List of Unverified Coin Withdrawals. The value and fees are in satoshis.

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class V1walletwithdrawcompletedExample
    {
        public void main()
        {
            
            var apiInstance = new WalletDataApi();
            var authorization = authorization_example;  // string | API object to be added
            var accept = accept_example;  // string | JSON, XML or CSV can be returned (Optional) (optional) 

            try
            {
                // Completed Coin Withdrawals
                WalletCoinWithdrawDataResponse result = apiInstance.V1walletwithdrawcompleted(authorization, accept);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling WalletDataApi.V1walletwithdrawcompleted: " + e.Message );
            }
        }
    }
}

Parameters

Name Type Description Notes
authorization string API object to be added
accept string JSON, XML or CSV can be returned (Optional) [optional]

Return type

WalletCoinWithdrawDataResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json, application/xml, application/csv

[Back to top] [Back to API list] [Back to Model list] [Back to README]

V1walletwithdrawunverified

WalletCoinWithdrawDataResponse V1walletwithdrawunverified (string authorization, string accept = null)

Unverified Coin Withdrawals

Gets a List of Unverified Coin Withdrawals. The value and fees are in satoshis.

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class V1walletwithdrawunverifiedExample
    {
        public void main()
        {
            
            var apiInstance = new WalletDataApi();
            var authorization = authorization_example;  // string | API object to be added
            var accept = accept_example;  // string | JSON, XML or CSV can be returned (Optional) (optional) 

            try
            {
                // Unverified Coin Withdrawals
                WalletCoinWithdrawDataResponse result = apiInstance.V1walletwithdrawunverified(authorization, accept);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling WalletDataApi.V1walletwithdrawunverified: " + e.Message );
            }
        }
    }
}

Parameters

Name Type Description Notes
authorization string API object to be added
accept string JSON, XML or CSV can be returned (Optional) [optional]

Return type

WalletCoinWithdrawDataResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json, application/xml, application/csv

[Back to top] [Back to API list] [Back to Model list] [Back to README]

V1walletwithdrawverified

WalletCoinWithdrawDataResponse V1walletwithdrawverified (string authorization, string accept = null)

Verified Coin Withdrawals

Gets a List of Unverified Coin Withdrawals. The value and fees are in satoshis.

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class V1walletwithdrawverifiedExample
    {
        public void main()
        {
            
            var apiInstance = new WalletDataApi();
            var authorization = authorization_example;  // string | API object to be added
            var accept = accept_example;  // string | JSON, XML or CSV can be returned (Optional) (optional) 

            try
            {
                // Verified Coin Withdrawals
                WalletCoinWithdrawDataResponse result = apiInstance.V1walletwithdrawverified(authorization, accept);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling WalletDataApi.V1walletwithdrawverified: " + e.Message );
            }
        }
    }
}

Parameters

Name Type Description Notes
authorization string API object to be added
accept string JSON, XML or CSV can be returned (Optional) [optional]

Return type

WalletCoinWithdrawDataResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json, application/xml, application/csv

[Back to top] [Back to API list] [Back to Model list] [Back to README]