---
title: "Retrieve current user"
url: "https://earlyaccess.developers.bynder.com/apis/users-1/versions/81ec58a1-c748-4616-b383-861ec1c98a2d/paths/api-v4-currentUser/get"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/users-1/versions/81ec58a1-c748-4616-b383-861ec1c98a2d.md

# Retrieve current user

`GET` `/api/v4/currentUser/`

Retrieve the current user information. Unlike [Retrieve specific user](#reference/users/specific-user-operations/retrieve-specific-user) this call doesn't require you to know your user id in order to retrieve your current user information.

## Responses

- `200` - Successful response

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Users
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/
paths:
  /api/v4/currentUser/:
    get:
      description: >
        Retrieve the current user information. Unlike [Retrieve specific
        user](#reference/users/specific-user-operations/retrieve-specific-user)
        this call doesn't require you to know your user id in order to retrieve
        your current user information.
      responses:
        "200":
          content:
            application/json:
              schema:
                properties:
                  active:
                    type: boolean
                  address:
                    type: string
                  cellphoneNumber:
                    type: string
                  city:
                    type: string
                  companyName:
                    type: string
                  costCenter:
                    type: string
                  country:
                    type: string
                  county:
                    type: string
                  department:
                    type: string
                  departmentCode:
                    type: string
                  email:
                    type: string
                  employeeNumber:
                    type: string
                  firstname:
                    type: string
                  gender:
                    type: string
                  id:
                    type: string
                  infix:
                    type: string
                  isSSOOnly:
                    type: boolean
                  job:
                    type: string
                  language:
                    type: string
                  lastLogin:
                    format: date-time
                    type: string
                  lastname:
                    type: string
                  legalEntity:
                    type: string
                  persisted:
                    type: boolean
                  phoneNumber:
                    type: string
                  postalCode:
                    type: string
                  profileId:
                    type: string
                  state:
                    type: string
                  terms:
                    type: string
                  timeZone:
                    type: string
                  username:
                    type: string
                type: object
          description: Successful response
      summary: Retrieve current user
      tags:
        - Current User
```
