v25

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-015053126.2 KB
RedisAcls

Get a single Redis ACL

Get a single Redis ACL by unique ID

get/v1/redis_acls/{uid}

Path parameters

uidinteger required

Redis ACL unique ID

Response

Redis ACL

account_idinteger

SM account ID associated with this ACL.

aclstring

Redis ACL string definition.

action_uidstring

Action uid. If exists - progress can be tracked by the GET /actions/<uid> API

max_versionstring

Maximum Redis version for which this ACL is valid.

min_versionstring

Minimum Redis version for which this ACL is valid.

namestring

ACL name.

uidinteger

Redis ACL unique uid.

Example response

{
  "acl": "on >allcommands allkeys",
  "max_version": "9999",
  "min_version": "6.2",
  "name": "default",
  "uid": 1
}