# User Information Integration

When the in-game navigation URL to ONE webshop includes the user’s `game ID (uid)` and `server ID (sid)`, these values are automatically applied when the user enters ONE webshop, allowing them to proceed with the purchase without additional input.

### URL Structure

* **Base URL :** `https://webshop.onestore.net/title/{PID}`
* **Query Params**: `uid`, `sid` (Optional)

<table><thead><tr><th width="156.9453125">Name</th><th width="137.0130615234375">Type</th><th width="138.6536865234375">Mandatory</th><th>Description</th></tr></thead><tbody><tr><td><code>uid</code></td><td>String</td><td>Optional</td><td>User’s Game ID (up to 100 bytes)</td></tr><tr><td><code>sid</code></td><td>String</td><td>Optional</td><td>User’s Server ID (up to 100 bytes)</td></tr></tbody></table>

### Sample URL

```
https://webshop.onestore.net/title/WS00000000?uid=user1234&sid=asia01

//WS00000000 → Title ID(PID)
//uid=user1234 → Game ID
//sid=asia01 → Server ID
```
