# UsersLoginRequest


[API catalog](/reference/api/) · [Publisher analytics overview](/reference/api/dvp/latest/) · [Product manual](https://docs.docker.com/docker-hub/repos/manage/trusted-content/insights-analytics/) · [OpenAPI specification](/reference/api/dvp/latest.yaml)

API version: 1.0.0



Schema constraints and annotations:

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



