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

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

# Retrieve users

`GET` `/api/workflow/users/`

## Responses

- `200` - A list of workflow users

## 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/users/:
    get:
      responses:
        "200":
          content:
            application/json:
              schema:
                items:
                  properties:
                    BynderUser:
                      properties:
                        email:
                          example: example@example.com
                          type: string
                        firstName:
                          example: Firstname
                          type: string
                        id:
                          example: 00000000-0000-0000-0000-000000000000
                          type: string
                        infix:
                          example: Van
                          type: string
                        lastName:
                          example: Lastname
                          type: string
                      type: object
                    ID:
                      example: 00000000-0000-0000-0000-000000000000
                      type: string
                    fullname:
                      example: Firstname Lastname
                      type: string
                  type: object
                type: array
          description: A list of workflow users
      security:
        - permanentToken:
            - USERMANAGEMENT
        - OAuth2:
            - USERMANAGEMENT
      summary: Retrieve users
      tags:
        - Users
security:
  - permanentToken:
      - USERMANAGEMENT
  - OAuth2:
      - USERMANAGEMENT
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
```
