## Get Game Round Details Page URL

Provides GP with details about the required game round.

**API Call Sample:**

```shell curl
curl -i -X GET \
  -u '<username>:<password>' \
  'https://asia.stage.rubyplay.io/api/v1/gamehistory/round/{roundId}?language=string&showSummary=false'
```

```json 200 application/json
{
  "url": "https://game.history?token=AABBCC&language=en"
}
```

```json 401 application/json
{
  "code": "NOT_AUTHORIZED",
  "message": "Authentication failed",
  "timestamp": "2026-01-25T14:30:00Z",
  "path": "/api/v1/gamehistory/round/{roundId}"
}
```

```json 403 application/json
{
  "code": "INSUFFICIENT_SCOPE",
  "message": "Insufficient scope to access this resource. Required: history:get",
  "timestamp": "2026-01-25T14:30:00Z",
  "path": "/api/v1/gamehistory/round/{roundId}"
}
```

```json 500 application/json
{
  "code": "UNKNOWN_ERROR",
  "message": "Something went wrong",
  "timestamp": "2026-01-25T14:30:00Z",
  "path": "/api/v1/gamehistory/round/{roundId}"
}
```

```json 504 application/json
{
  "code": "TIMEOUT",
  "message": "The server did not respond within the expected time",
  "timestamp": "2026-01-25T14:30:00Z",
  "path": "/api/v1/gamehistory/round/{roundId}"
}
```

**Response Schema:**

```json
{
  "$ref": "#/components/schemas/GameHistoryLinkDto",
  "components": {
    "schemas": {
      "GameHistoryLinkDto": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "The URL of the game round details page.",
            "example": "https://game.history?token=AABBCC&language=en"
          }
        }
      }
    }
  }
}
```