Retrieve Group Details {#group-manage-retrieve-details}
=======================================================

You can retrieve a description of the group and a list of its members.

Endpoints
---------

**Production:** `GET ``https://api.cybersource.com``/groups/{groupId}`  
**Test:** `GET ``https://apitest.cybersource.com``/groups/{groupId}`

Required Field for Retrieving Group Details {#group-manage-retrieve-details-req}
================================================================================

groupId
:
The unique identifier of the group.

REST Example: Retrieve Group Details {#group-manage-retrieve-details-ex-rest}
=============================================================================

Request

```keyword
GET https://api.cybersource.com/groups/123456789
```

Response to a Successful Request

```
{
  "groupId": "123456789",
  "organizationId": "test_organization_id",
  "name": "testGroupName",
  "description": "test group description",
  "creationDateTime": "2026-04-14 15:11:02",
  "updatedDateTime": "2026-04-14 15:11:02",
  "type": "CustomGroup",
  "selectedOrganizationCount": 5,
  "selectedOrganizationIds": [
    "test_organization_id1",
    "test_organization_id2",
    "test_organization_id3",
    "test_organization_id4",
    "test_organization_id5"
  ]
}
```

