# UsersLoginRequest


[API catalog](/reference/api/) · [Docker Hub overview](/reference/api/hub/latest/) · [Product manual](https://docs.docker.com/docker-hub/) · [OpenAPI specification](/reference/api/hub/latest.yaml)

API version: 2-beta



Schema constraints and annotations:

```json
{
  "description": "User login details",
  "examples": [
    {
      "password": "p@ssw0rd",
      "username": "myusername"
    }
  ],
  "properties": {
    "password": {
      "description": "The password or personal access token (PAT) of the Docker Hub account to authenticate with.\n",
      "example": "p@ssw0rd",
      "type": "string"
    },
    "username": {
      "description": "The username of the Docker Hub account to authenticate with.",
      "example": "myusername",
      "type": "string"
    }
  },
  "required": [
    "username",
    "password"
  ],
  "type": "object"
}
```



