# Game details
## description
> Obtain the URL for game order details。
> Request method:( Host-> BeSoft):post
> Encoding method:application/x-www-form-urlencoded
> Besoft The response data format is: application/json
## Request URL
> {besoftapi}/api/game/getdetailsurl
## Request Parameters
| Name | Type | Required |Description|
|:--------:|:-----:|:--------:|:--------:|
| cert | string | Y |security code|
| extension1 | string | Y |Agent|ID|
| transId | string | Y |Game Details only ID|
| lang | string | Y |language|
## Example
- URL:
- http://127.0.0.1:8000/api/game/getdetailsurl
- HTTP Method
- POST
- Form Data
> Content-Type: application/x-www-form-urlencoded
```
cert:v8VMKKzlPpD0te4rX99Hgefs3PQrBFWJKiuUqg6Y
extension1:adminweb
transId:1
lang:en
```
## Return Result
| Name | Type | Description |
|:--------:|:-----:|:--------:|
| status | int | Status |
| logurl | string |Detailed order URL |
## Success Result
```
{
"status": 1,
"logurl": "https://{besoftapi}/gameDetail?&
sourceType=thirdParty&ratio=1&locale=en&code=$&
key=3F6AE325F1B42B46B2B4D7529DA9AF13FBAD55A18A8C32C977C9CAE292BEA62A6C1098CB38F331ADA2B793EF420EFEAB71BDA0ABFB634E39"
}
```
> Note: When status=1, the data is successful; otherwise, it is failed.
## Failed Result
```
{
"status": 1003
}
```