|
4 | 4 | <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> |
5 | 5 | **Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)* |
6 | 6 |
|
7 | | -- [Private REST API一覧 (2023-06-20)](#private-rest-api%E4%B8%80%E8%A6%A7-2023-06-20) |
| 7 | +- [Private REST API一覧 (2023-11-08)](#private-rest-api%E4%B8%80%E8%A6%A7-2023-11-08) |
8 | 8 | - [API 概要](#api-%E6%A6%82%E8%A6%81) |
9 | 9 | - [認証](#%E8%AA%8D%E8%A8%BC) |
10 | 10 | - [レートリミット](#%E3%83%AC%E3%83%BC%E3%83%88%E3%83%AA%E3%83%9F%E3%83%83%E3%83%88) |
|
33 | 33 |
|
34 | 34 | <!-- END doctoc generated TOC please keep comment here to allow auto update --> |
35 | 35 |
|
36 | | -# Private REST API一覧 (2023-06-20) |
| 36 | +# Private REST API一覧 (2023-11-08) |
37 | 37 |
|
38 | 38 | ## API 概要 |
39 | 39 |
|
@@ -103,9 +103,10 @@ free_amount | string | 利用可能な量 |
103 | 103 | amount_precision | number | 精度 |
104 | 104 | onhand_amount | string | 保有量 |
105 | 105 | locked_amount | string | ロックされている量 |
106 | | -withdrawal_fee | string or { under: string, over: string, threshold:string } for `jpy` | 出金手数料 |
107 | | -stop_deposit | boolean | 入金ステータス |
108 | | -stop_withdrawal | boolean | 出金ステータス |
| 106 | +withdrawal_fee | { min: string, max: string } or { under: string, over: string, threshold:string } for `jpy` | 出金手数料 |
| 107 | +stop_deposit | boolean | 入金ステータス(全ネットワークが入金停止 = `true`) |
| 108 | +stop_withdrawal | boolean | 出金ステータス(全ネットワークが出金停止 = `true`) |
| 109 | +network_list | { asset: string, network: string, stop_deposit: boolean, stop_withdrawal: boolean, withdrawal_fee: string } or undefined for `jpy` | ネットワーク一覧 |
109 | 110 |
|
110 | 111 | **サンプルコード:** |
111 | 112 |
|
@@ -139,9 +140,21 @@ curl -H 'ACCESS-KEY:'"$API_KEY"'' -H 'ACCESS-NONCE:'"$ACCESS_NONCE"'' -H 'ACCESS |
139 | 140 | "amount_precision": 0, |
140 | 141 | "onhand_amount": "string", |
141 | 142 | "locked_amount": "string", |
142 | | - "withdrawal_fee": "string", |
| 143 | + "withdrawal_fee": { |
| 144 | + "min": "string", |
| 145 | + "max": "string" |
| 146 | + }, |
143 | 147 | "stop_deposit": false, |
144 | 148 | "stop_withdrawal": false, |
| 149 | + "network_list": [ |
| 150 | + { |
| 151 | + "asset": "string", |
| 152 | + "network": "string", |
| 153 | + "stop_deposit": false, |
| 154 | + "stop_withdrawal": false, |
| 155 | + "withdrawal_fee": "string" |
| 156 | + } |
| 157 | + ] |
145 | 158 | }, |
146 | 159 | { |
147 | 160 | "asset": "jpy", |
@@ -240,7 +253,7 @@ curl -H 'ACCESS-KEY:'"$API_KEY"'' -H 'ACCESS-NONCE:'"$ACCESS_NONCE"'' -H 'ACCESS |
240 | 253 | "ordered_at": 0, |
241 | 254 | "expire_at": 0, |
242 | 255 | "triggered_at": 0, |
243 | | - "triger_price": "string", |
| 256 | + "trigger_price": "string", |
244 | 257 | "status": "string" |
245 | 258 | } |
246 | 259 | } |
@@ -709,6 +722,7 @@ Name | Type | Description |
709 | 722 | uuid | string | 入金識別uuid |
710 | 723 | address | string | 入金address |
711 | 724 | asset | string | アセット名: [アセット一覧](assets.md) |
| 725 | +network | string | ネットワーク名: [ネットワーク一覧](networks.md) |
712 | 726 | amount | number | 入金数量 |
713 | 727 | txid | string or null | 入金トランザクションID(暗号資産の時のみ) |
714 | 728 | status | string | 入金状態: `FOUND`, `CONFIRMED`, `DONE` |
@@ -749,6 +763,7 @@ curl -H 'ACCESS-KEY:'"$API_KEY"'' -H 'ACCESS-NONCE:'"$ACCESS_NONCE"'' -H 'ACCESS |
749 | 763 | { |
750 | 764 | "uuid": "string", |
751 | 765 | "asset": "string", |
| 766 | + "network": "string", |
752 | 767 | "amount": "string", |
753 | 768 | "txid": "string", |
754 | 769 | "status": "string", |
@@ -780,6 +795,7 @@ Name | Type | Description |
780 | 795 | ------------ | ------------ | ------------ |
781 | 796 | uuid | string | 出金アカウントのID |
782 | 797 | label | string | ラベル |
| 798 | +network | string | ネットワーク名: [ネットワーク一覧](networks.md) |
783 | 799 | address | string | 出金先アドレス |
784 | 800 |
|
785 | 801 | **サンプルコード:** |
@@ -811,6 +827,7 @@ curl -H 'ACCESS-KEY:'"$API_KEY"'' -H 'ACCESS-NONCE:'"$ACCESS_NONCE"'' -H 'ACCESS |
811 | 827 | { |
812 | 828 | "uuid": "string", |
813 | 829 | "label": "string", |
| 830 | + "network": "string", |
814 | 831 | "address": "string" |
815 | 832 | } |
816 | 833 | ] |
@@ -845,6 +862,7 @@ amount | string | 出金数量 |
845 | 862 | fee | string | 出金手数料 |
846 | 863 | label | string | 出金先アドレスにつけたラベル(暗号資産の時のみ) |
847 | 864 | address | string | 出金先アドレス(暗号資産の時のみ) |
| 865 | +network | string | ネットワーク名(暗号資産の時のみ): [ネットワーク一覧](networks.md) |
848 | 866 | destination_tag | number or string | 出金先宛先タグまたはメモ(タグまたはメモを指定した暗号資産の出金時のみ) |
849 | 867 | txid | string or null | 出金トランザクションID(暗号資産の時のみ) |
850 | 868 | bank_name | string | 出金先銀行(法定通貨の時のみ) |
@@ -891,6 +909,7 @@ curl -H 'ACCESS-KEY:'"$API_KEY"'' -H 'ACCESS-NONCE:'"$ACCESS_NONCE"'' -H 'ACCESS |
891 | 909 |
|
892 | 910 | "label": "string", |
893 | 911 | "address": "string", |
| 912 | + "network": "string", |
894 | 913 | "txid": "string", |
895 | 914 | "destination_tag": 0, |
896 | 915 |
|
@@ -932,6 +951,7 @@ amount | number | 出金数量 |
932 | 951 | fee | number | 出金手数料 |
933 | 952 | label | string | 出金先アドレスにつけたラベル(暗号資産の時のみ) |
934 | 953 | address | string | 出金先アドレス(暗号資産の時のみ) |
| 954 | +network | string | ネットワーク名(暗号資産の時のみ): [ネットワーク一覧](networks.md) |
935 | 955 | destination_tag | number or string | 出金先宛先タグまたはメモ(タグまたはメモを指定した暗号資産の出金時のみ) |
936 | 956 | txid | string or null | 出金トランザクションID(暗号資産の時のみ) |
937 | 957 | bank_name | string | 出金先銀行(法定通貨の時のみ) |
@@ -978,6 +998,7 @@ curl -H 'ACCESS-KEY:'"$API_KEY"'' -H 'ACCESS-NONCE:'"$ACCESS_NONCE"'' -H 'ACCESS |
978 | 998 |
|
979 | 999 | "label": "string", |
980 | 1000 | "address": "string", |
| 1001 | + "network": "string", |
981 | 1002 | "txid": "string", |
982 | 1003 | "destination_tag": 0, |
983 | 1004 |
|
|
0 commit comments