## GetDotfilesConfiguration **post** `/gitpod.v1.UserService/GetDotfilesConfiguration` Gets the dotfiles for a user. Use this method to: - Retrieve user dotfiles ### Examples - Get dotfiles: Retrieves the dotfiles for the current user. ```yaml {} ``` ### Body Parameters - `empty: optional boolean` ### Returns - `dotfilesConfiguration: DotfilesConfiguration` - `repository: optional string` The URL of a dotfiles repository. ### Example ```http curl https://app.gitpod.io/api/gitpod.v1.UserService/GetDotfilesConfiguration \ -H 'Content-Type: application/json' \ -H "Authorization: Bearer $GITPOD_API_KEY" \ -d '{}' ``` #### Response ```json { "dotfilesConfiguration": { "repository": "https://example.com" } } ```