---
name: "getRemotePermissionList"
mode: "api"
versionRequirements:
  - { name: "@ray-js/lock-sdk", version: "1.0.0" }
title: "getRemotePermissionList - Get remote lock/unlock permission list."
summary: "Get remote lock/unlock permission list."
---

## getRemotePermissionList

> [VERSION] @ray-js/lock-sdk >= 1.0.0

### Description

Get remote unlock permission list

### Parameters

None


### Return Value

Type: `RemotePermissionType[]`

List of selectable remote door open/close permission constants (tiers)

### Referenced Types

##### `enum` RemotePermissionType

| Enum Value | Description |
| --- | --- |
| `everyOne` | Everyone allowed |
| `adminsOnly` | Admins only |
| `noOne` | No one allowed |


### Examples

#### Example

```ts
import { getRemotePermissionList } from '@ray-js/lock-sdk';
const permissionList = getRemotePermissionList();
```
