# Get

## Get

<mark style="color:blue;">`GET`</mark> `https://{{account_id}}.acquire.io/api/v1/account/department/{{departmentId}}`

Retrieve a single department. The departmentId must be passed in to the endpoint as a path parameter.

#### Path Parameters

| Name         | Type    | Description          |
| ------------ | ------- | -------------------- |
| departmentId | integer | ID of the department |

#### Query Parameters

| Name      | Type   | Description                                     |
| --------- | ------ | ----------------------------------------------- |
| select    | array  | Specify which fields you'd like in the response |
| relations | object | Specify relations with other entities           |

#### Headers

| Name          | Type   | Description         |
| ------------- | ------ | ------------------- |
| Authorization | string | Bearer {{API\_KEY}} |

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

```
{
  "data": {
    "id": 11,
    "name": "moi",
    "status": "active"
  }
}
```

{% endtab %}
{% endtabs %}
