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.
Example response
{
"success": true,
"data": {
"id": 100,
"name": "Test group",
"created_at": 1512638171000,
"owner": {
"name": "John Doe",
"email": "example@example.com"
}
}
}