> For the complete documentation index, see [llms.txt](https://developer.acquire.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.acquire.io/rest-apis/settings/account-settings/account-roles/get-single-role.md).

# Get Single Role

## Get Single Role

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

Retrieve a single role. The `roleId` must be passed in to the endpoint as a path parameter.&#x20;

#### Path Parameters

| Name   | Type    | Description     |
| ------ | ------- | --------------- |
| roleId | integer | ID for the role |

#### 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": 1,
    "roleName": "Administrator",
    "permissions": [
      "*/*"
    ],
    "permissionType": null,
    "meta": null
  }
}
```

{% endtab %}
{% endtabs %}
