v1

latestOpenAPI 3.0.0Apache 2.02026-08-0610023171.4 KB
Groups

Get group details

Return basic group details, owner contact information, and current group balance. The authenticated user must be a member of the group.

get/api/v1/groups/view/{id}/

Path parameters

idinteger required

Numeric group ID.

Response

The request succeeded and returned group details.

successboolean

Example response

{
  "success": true,
  "data": {
    "id": 100,
    "name": "Test group",
    "created_at": 1512638171000,
    "owner": {
      "name": "John Doe",
      "email": "example@example.com"
    }
  }
}