---
title: "Retrieve specific group"
url: "https://earlyaccess.developers.bynder.com/apis/workflow-users-and-groups-api-1/versions/95f38e13-7691-49d0-80f0-875f3802be91/paths/api-workflow-groups-id/get"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/workflow-users-and-groups-api-1/versions/95f38e13-7691-49d0-80f0-875f3802be91.md

# Retrieve specific group

`GET` `/api/workflow/groups/{id}`

## Path parameters

- `id` (string, required)

## Responses

- `200` - A specific workflow group

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Workflow Users and Groups API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}
paths:
  /api/workflow/groups/{id}:
    get:
      parameters:
        - in: path
          name: id
          required: true
          schema:
            example: 00000000-0000-0000-0000-000000000000
            type: string
      responses:
        "200":
          content:
            application/json:
              schema:
                properties:
                  ID:
                    example: 00000000-0000-0000-0000-000000000000
                    type: string
                  accountID:
                    example: 00000000-0000-0000-0000-000000000000
                    type: string
                  createdByID:
                    example: 00000000-0000-0000-0000-000000000000
                    type: string
                  dateCreated:
                    example: 2017-10-27T16:32:16+00:00
                    type: string
                  name:
                    example: Content Reviewers
                    type: string
                  users:
                    items:
                      properties:
                        ID:
                          example: 00000000-0000-0000-0000-000000000000
                          type: string
                        bynderUser:
                          properties:
                            email:
                              example: test@bynder.com
                              type: string
                            firstName:
                              example: FirstName
                              type: string
                            id:
                              example: 00000000-0000-0000-0000-000000000000
                              type: string
                            infix:
                              example: null
                              type: string
                            lastName:
                              example: LastName
                              type: string
                          type: object
                        fullName:
                          example: FirstName LastName
                          type: string
                      type: object
                    type: array
                type: object
          description: A specific workflow group
      security:
        - permanentToken:
            - GROUPOVERVIEW
            - WORKFLOWADMIN
        - OAuth2:
            - GROUPOVERVIEW
            - WORKFLOWADMIN
      summary: Retrieve specific group
      tags:
        - Groups
security:
  - permanentToken:
      - GROUPOVERVIEW
      - WORKFLOWADMIN
  - OAuth2:
      - GROUPOVERVIEW
      - WORKFLOWADMIN
components:
  securitySchemes:
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          scopes:
            GROUPOVERVIEW: ""
            USERMANAGEMENT: ""
            WORKFLOWADMIN: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
        clientCredentials:
          scopes:
            GROUPOVERVIEW: ""
            USERMANAGEMENT: ""
            WORKFLOWADMIN: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
      type: oauth2
```
