> For the complete documentation index, see [llms.txt](https://bmsvieira.gitbook.io/osticket-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bmsvieira.gitbook.io/osticket-api/users/get-specific-by-id.md).

# \[GET] Specific by ID

#### Base URL:

```javascript
{YOUR-DOMAIN}/upload/ost_wbs/
```

#### \[ Header ] Authentication

| Field    |   Type   | Mandatory |
| -------- | :------: | --------- |
| `apikey` | `string` | ✔️        |

#### \[ Body ] parameters

<table><thead><tr><th>Option</th><th>Type</th><th width="150" align="center">Mandatory</th></tr></thead><tbody><tr><td><code>query</code></td><td><code>string</code></td><td align="center">✔️</td></tr><tr><td><code>condition</code></td><td><code>string</code></td><td align="center">✔️</td></tr><tr><td><code>sort</code></td><td><code>string</code></td><td align="center">✔️</td></tr><tr><td><code>id</code></td><td><code>int</code></td><td align="center">✔️</td></tr></tbody></table>

#### Body request example:

```json
{
"query":"user",
"condition":"specific",
"sort":"id",
"parameters":{
    "id":2
    }
}
```

{% tabs %}
{% tab title="200 OK" %}

```json
{
    "status": "Success",
    "time": 0.04409980773925781,
    "data": {
        "total": 1,
        "users": [
            {
                "user_id": "2",
                "name": "IT Operator",
                "created": "2022-06-15 11:32:53"
            }
        ]
    }
}
```

{% endtab %}

{% tab title="204 No Content" %}

```json
{
    "status": "Error",
    "data": "No items found."
}
```

{% endtab %}
{% endtabs %}
