---
title: "User"
url: "https://earlyaccess.developers.bynder.com/apis/users-1/versions/81ec58a1-c748-4616-b383-861ec1c98a2d/schemas/User"
---

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

# User

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Users
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/
components:
  schemas:
    User:
      properties:
        active:
          default: 1
          enum:
            - 1
            - 0
          type: integer
        companyName:
          type: string
        costCenter:
          type: string
        department:
          type: string
        email:
          type: string
        firstname:
          type: string
        groupIds:
          type: string
        infix:
          type: string
        isSSOOnly:
          default: false
          type: boolean
        job:
          type: string
        language:
          type: string
        lastname:
          type: string
        password:
          type: string
        phoneNumber:
          type: string
        profileId:
          type: string
        username:
          type: string
      required:
        - password
        - email
        - profileId
        - firstname
        - lastname
```
