curl --request POST \
--url https://api.turnkey.com/public/v1/query/list_wallets \
--header 'Content-Type: application/json' \
--header 'X-Stamp: <api-key>' \
--data '{
"organizationId": "<string>"
}'
{
"wallets": [
{
"walletId": "<string>",
"walletName": "<string>",
"createdAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"updatedAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"exported": true,
"imported": true
}
]
}
List all Wallets within an Organization
curl --request POST \
--url https://api.turnkey.com/public/v1/query/list_wallets \
--header 'Content-Type: application/json' \
--header 'X-Stamp: <api-key>' \
--data '{
"organizationId": "<string>"
}'
{
"wallets": [
{
"walletId": "<string>",
"walletName": "<string>",
"createdAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"updatedAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"exported": true,
"imported": true
}
]
}
A successful response.
The response is of type object
.
Was this page helpful?