Skip to main content

Retrieve a Recipient Group

Returns a single group with its members.
GET /v1/docks/:dockId/groups/:id

Path Parameters

ParameterTypeDescription
dockIdstringThe dock ID
idstringThe group ID

Example Request

curl https://api.docyard.io/v1/docks/dock_01HQ3K.../groups/grp_01HQ3R... \
  -H "Authorization: Bearer dk_live_a1b2c3d4..."

Response

{
  "id": "grp_01HQ3R...",
  "dockId": "dock_01HQ3K...",
  "name": "Mortgagee Partners",
  "description": "All institutional mortgage lender recipients",
  "recipients": [
    { "id": "rcp_01HQ3N...", "name": "First National Bank", "email": "[email protected]" }
  ],
  "createdAt": "2025-01-15T10:40:00.000Z"
}

Error Handling

StatusCondition
401Missing or invalid API key
404Group or dock not found