Get Group by ID
This method returns the group that matches the entered ID.
Authorizations
Path parameters
group_idintegerRequired
group's id
Responses
200
Group object
application/json
404
Group not found
application/json
get
GET /groups/{group_id} HTTP/1.1
Host:
X-Ledger-API-Key: YOUR_API_KEY
Accept: */*
{
"created_by": 5,
"created_on": "2025-07-01T03:14:18.259Z",
"description": "group of trusted validators",
"id": 1,
"last_request": 3,
"members": [
11,
12
],
"name": "validators",
"status": "ACTIVE"
}
Last updated