curl --request GET \
--url https://api.onchainden.com/api/v1/admins \
--header 'Authorization: Bearer <token>'{
"data": {
"members": [
{
"id": "mem_123",
"name": "Alice",
"type": "user",
"walletAddress": "0xabc...",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"threshold": 123
}
}Retrieves the current admin configuration including members and threshold.
curl --request GET \
--url https://api.onchainden.com/api/v1/admins \
--header 'Authorization: Bearer <token>'{
"data": {
"members": [
{
"id": "mem_123",
"name": "Alice",
"type": "user",
"walletAddress": "0xabc...",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"threshold": 123
}
}