You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`index`| String | The unique ID of this [ledger entry](../../../protocol/ledger-data/ledger-entry-types/index.md). |
893
-
|`ledger_index`| Unsigned Integer | The [ledger index][] of the ledger that was used when retrieving this data. |
894
-
|`node`| Object |_(Omitted if `"binary": true` specified.)_ Object containing the data of this ledger entry, according to the [ledger format][]. |
895
-
|`node_binary`| String |_(Omitted unless `"binary":true` specified)_ The [binary representation](../../../protocol/binary-format.md) of the ledger object, as hexadecimal. |
896
-
|`deleted_ledger_index`| String |_(Clio server only, returned if `include_deleted` parameter is set.)_ The [ledger index][] where the ledger entry object was deleted. |
|`mptoken`| ️Object or String | If a string, interpret as ledger entry ID of the MPToken to retrieve. If an object, requires the sub-fields account and mpt_issuance_id to unique identify the MPToken. |
1052
-
| mptoken.mpt_issuance_id | ️String | (Required if the `MPToken` is specified as an object) The 192-bit MPTokenIssuanceID that's associated with the MPTokenIssuance. |
1053
-
| mptoken.account ️ | String | (Required if the `MPToken` is specified as an object) The account that owns the MPToken. |
|`mptoken`| ️Object or String | If a string, interpret as ledger entry ID of the MPToken to retrieve. If an object, requires the sub-fields `account` and `mpt_issuance_id` to uniquely identify the MPToken. |
941
+
|`mptoken.mpt_issuance_id`| String | (Required if the `MPToken` is specified as an object) The 192-bit MPTokenIssuanceID that's associated with the MPTokenIssuance. |
942
+
|`mptoken.account` ️ | String | (Required if the `MPToken` is specified as an object) The account that owns the MPToken. |
|`index`| String | The unique ID of this [ledger entry](../../../protocol/ledger-data/ledger-entry-types/index.md). |
1098
-
|`ledger_index`| Unsigned Integer | The [ledger index](../../../protocol/data-types/basic-data-types.md#ledger-index) of the ledger that was used when retrieving this data. |
1099
-
|`node`| Object |_(Omitted if `"binary": true` specified.)_ Object containing the data of this ledger entry, according to the [ledger format](../../../protocol/ledger-data/ledger-entry-types/index.md). |
994
+
|`ledger_index`| Unsigned Integer | The [ledger index][] of the ledger that was used when retrieving this data. |
995
+
|`node`| Object |_(Omitted if `"binary": true` specified.)_ Object containing the data of this ledger entry, according to the [ledger format][]. |
1100
996
|`node_binary`| String |_(Omitted unless `"binary":true` specified)_ The [binary representation](../../../protocol/binary-format.md) of the ledger object, as hexadecimal. |
997
+
|`deleted_ledger_index`| String |_(Clio server only, returned if `include_deleted` parameter is set.)_ The [ledger index][] where the ledger entry object was deleted. |
1101
998
1102
999
An example of a successful response:
1103
1000
1104
-
<!-- MULTICODE_BLOCK_START -->
1105
-
1106
-
*WebSocket*
1001
+
{% tabs %}
1107
1002
1003
+
{% tab label="WebSocket" %}
1108
1004
```json
1109
1005
{
1110
1006
"id": "example_get_accountroot",
@@ -1135,9 +1031,9 @@ An example of a successful response:
1135
1031
"type": "response"
1136
1032
}
1137
1033
```
1034
+
{% /tab %}
1138
1035
1139
-
*JSON-RPC*
1140
-
1036
+
{% tab label="JSON-RPC" %}
1141
1037
```json
1142
1038
200OK
1143
1039
@@ -1168,9 +1064,9 @@ An example of a successful response:
1168
1064
}
1169
1065
}
1170
1066
```
1067
+
{% /tab %}
1171
1068
1172
-
*Commandline*
1173
-
1069
+
{% tab label="Commandline" %}
1174
1070
```json
1175
1071
{
1176
1072
"result": {
@@ -1199,8 +1095,9 @@ An example of a successful response:
0 commit comments