Ledger Enterprise
API Documentation V2
API Documentation V2
  • Introduction
    • Getting Started
    • Overview
  • Guides
    • Authentication
    • Balance Reporting Bot
      • 1. Project setup
      • 2. Connect to revault-api
      • 3. Fetch accounts balances
      • 4. Conclusion
  • reference
    • API reference
      • Users
      • Accounts
        • Transactions
      • Groups
      • Whitelists
      • Policies
      • Entities
      • Requests
        • Generate registration challenge
        • Confirm registration challenge
        • Challenge
        • Approve
        • Reject
      • Auth
        • Token
          • Refresh
      • Permissions
        • Allowed actions
        • Resources
      • Assets
        • Currencies
        • Tokens
      • Tradelink
        • Network
          • Blueprint
    • Specification
Powered by GitBook
On this page
  1. reference
  2. API reference

Groups

Page description

PreviousTransactionsNextWhitelists

Last updated 28 days ago

Get a single group

get

Find a group by ID.

Authorizations
Path parameters
idstringRequired

Id of the target group

Responses
200
Successful response
application/json
default
Error response
application/json
get
GET /rest/groups/{id} HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "id": "text",
  "legacyId": 1,
  "name": "text",
  "description": "text",
  "status": "ACTIVE",
  "members": [
    {
      "id": "text",
      "legacyId": 1,
      "legacyViewAll": true,
      "workspaceName": "text",
      "name": "text",
      "deviceUserId": "text",
      "role": "ADMIN",
      "status": "ACTIVE",
      "createdAt": "2025-05-30T22:37:46.287Z",
      "updatedAt": "2025-05-30T22:37:46.287Z"
    }
  ],
  "createdAt": "2025-05-30T22:37:46.287Z",
  "updatedAt": "2025-05-30T22:37:46.287Z"
}